The following JSS will not output anything.
<js>write((true === true) ? 'true' : 'false')</js>
The issue can be seen if you do a console.log(daFunc) around line 1170 in /code/6 - build.js which results in the following intermediary code below.
write((true === true, place) ? 'true' : 'false')
The following JSS will not output anything.
The issue can be seen if you do a
console.log(daFunc)around line 1170 in/code/6 - build.jswhich results in the following intermediary code below.