TypeScript/tests/baselines/reference/templateStringWithEmbeddedConditional.js

6 lines
189 B
TypeScript
Raw Normal View History

//// [templateStringWithEmbeddedConditional.ts]
var x = `abc${ true ? false : " " }def`;
//// [templateStringWithEmbeddedConditional.js]
var x = "abc" + (true ? false : " ") + "def";