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

6 lines
201 B
TypeScript

//// [templateStringWithEmbeddedInstanceOf.ts]
var x = `abc${ "hello" instanceof String }def`;
//// [templateStringWithEmbeddedInstanceOf.js]
var x = "abc" + ("hello" instanceof String) + "def";