TypeScript/tests/baselines/reference/templateStringInUnaryPlus.types

8 lines
191 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringInUnaryPlus.ts ===
var x = +`abc${ 123 }def`;
>x : number
>+`abc${ 123 }def` : number
2015-04-13 21:36:11 +02:00
>`abc${ 123 }def` : string
>123 : number