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

6 lines
208 B
JavaScript

//// [templateStringWithEmbeddedInOperator.ts]
var x = `abc${ "hi" in { hi: 10, hello: 20} }def`;
//// [templateStringWithEmbeddedInOperator.js]
var x = "abc" + ("hi" in { hi: 10, hello: 20 }) + "def";