What I was really looking forward to in this release was:
- JS template strings: `Hello ${'world'}` - Direct jQuery event in the inspector
Template strings are enclosed by the back-tick, `string text ${expression} string text`
var a = 5; var b = 10; console.log(`Fifteen is ${a + b} and not ${2 * a + b}.`); // "Fifteen is 15 and not 20."
tag`Hello ${ a + b } world ${ a * b}`;
https://github.com/davidchambers/string-format
What I was really looking forward to in this release was: