TypeScript/tests/baselines/reference/templateStringWithEmbeddedTypeOfOperator.js

6 lines
179 B
TypeScript
Raw Normal View History

//// [templateStringWithEmbeddedTypeOfOperator.ts]
var x = `abc${ typeof "hi" }def`;
//// [templateStringWithEmbeddedTypeOfOperator.js]
var x = "abc" + typeof "hi" + "def";