TypeScript/tests/baselines/reference/templateStringWithEmbeddedTypeOfOperator.js
2014-10-23 15:06:05 -07:00

6 lines
179 B
TypeScript

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