TypeScript/tests/baselines/reference/templateStringWithBackslashEscapes01_ES6.js

13 lines
308 B
TypeScript
Raw Normal View History

2015-04-17 00:54:14 +02:00
//// [templateStringWithBackslashEscapes01_ES6.ts]
var a = `hello\world`;
var b = `hello\\world`;
var c = `hello\\\world`;
var d = `hello\\\\world`;
//// [templateStringWithBackslashEscapes01_ES6.js]
var a = `hello\world`;
var b = `hello\\world`;
var c = `hello\\\world`;
var d = `hello\\\\world`;