TypeScript/tests/baselines/reference/templateStringWithEmbeddedTypeOfOperatorES6.js

6 lines
180 B
TypeScript
Raw Normal View History

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