TypeScript/tests/baselines/reference/templateStringWithEmbeddedModulo.js

6 lines
151 B
JavaScript
Raw Normal View History

//// [templateStringWithEmbeddedModulo.ts]
var x = `abc${ 1 % 1 }def`;
//// [templateStringWithEmbeddedModulo.js]
var x = "abc" + 1 % 1 + "def";