es6 string templates

Solutions on MaxInterview for es6 string templates by the best coders in the world

showing results for - "es6 string templates"
Joaquín
19 Feb 2017
1const subject = 'world';
2console.log(`hello ${subject}`);
3// output = 'hello world'