TypeScript/tests/baselines/reference/templateStringWithEmbeddedUnaryPlus.js

6 lines
165 B
JavaScript
Raw Normal View History

//// [templateStringWithEmbeddedUnaryPlus.ts]
var x = `abc${ +Infinity }def`;
//// [templateStringWithEmbeddedUnaryPlus.js]
var x = "abc" + +Infinity + "def";