19 lines
234 B
JavaScript
19 lines
234 B
JavaScript
function multilineTemplate() {
|
|
return `I'm done reconfoobling
|
|
${ 'the energy motron' }
|
|
${'...or whatever'}`;
|
|
}
|
|
|
|
{
|
|
const foo = `spam
|
|
and eggs!`;
|
|
|
|
const bar = `${
|
|
4 +
|
|
2
|
|
}`;
|
|
|
|
const hello = `Hello
|
|
${ 'world' }`;
|
|
}
|