This is driving me nuts.
I have
This SHOULD print
(see this JSFiddle: https://jsfiddle.net/udz7rkfw/)
But instead, it's printing
Da fuq?
I've tried:
And I get the same result.
What am I missing?
I have
posting_layout_include_panel_body.html
with something like this:Code:
<script> let x = "that"; let y = `this_${x}`; console.log('y: ', y);</script>
y: this_that
.(see this JSFiddle: https://jsfiddle.net/udz7rkfw/)
But instead, it's printing
y: this_$
.Da fuq?
I've tried:
Code:
<script> let x = "that"; let y = `this_\${x}`; console.log('y: ', y);</script>
What am I missing?
Statistics: Posted by tig_ — Thu Jan 16, 2025 4:54 pm