RosettaCodeData/Task/Here-document/JavaScript/here-document.js
2023-07-01 13:44:08 -04:00

6 lines
146 B
JavaScript

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)