TypeScript/tests/baselines/reference/templateStringWithBackslashEscapes01.js

14 lines
299 B
TypeScript
Raw Normal View History

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