TypeScript/tests/baselines/reference/templateStringWithEmbeddedTemplateString.js

6 lines
270 B
TypeScript
Raw Normal View History

//// [templateStringWithEmbeddedTemplateString.ts]
var x = `123${ `456 ${ " | " } 654` }321 123${ `456 ${ " | " } 654` }321`;
//// [templateStringWithEmbeddedTemplateString.js]
var x = "123" + "456 " + " | " + " 654" + "321 123" + "456 " + " | " + " 654" + "321";