TypeScript/tests/baselines/reference/templateStringWithEmbeddedMultiplication.js

6 lines
167 B
TypeScript
Raw Normal View History

//// [templateStringWithEmbeddedMultiplication.ts]
var x = `abc${ 7 * 6 }def`;
//// [templateStringWithEmbeddedMultiplication.js]
var x = "abc" + 7 * 6 + "def";