RosettaCodeData/Task/Here-document/JavaScript/here-document.js

7 lines
146 B
JavaScript
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
const myVar = 123;
const tempLit = `Here is some
multi-line string. And here is
the value of "myVar": ${myVar}
That's all.`;
console.log(tempLit)