TypeScript/tests/baselines/reference/templateStringWithEmbeddedInstanceOf.js

6 lines
201 B
TypeScript
Raw Normal View History

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