JS: String.raw

By Xah Lee. Date: . Last updated: .

(new in JS: ECMAScript 2015)

2017-01-23 this page is work in progress.

String.raw(template, …substitutions)

String.raw`…` is equivalent to `…`

console.log(
 String.raw`a${3+2}b` // a5b
);

console.log(
 String.raw`a${3+2}b` === `a${3+2}b`
);

〔see Template String

〔see Tagged Template String