const speed = 'quick'; `The ${speed} brown fox jumps over the lazy dog.`
let x, { x: y = 1 } = { x }; y;
(function() {
let f = this ? class g { } : class h { };
return [ typeof f, typeof h ];
})();
typeof (new (class F extends (String, Array) { })).substring
typeof (function* f() { yield f })().next().next()
const PI = 3.14;
console.log(PI) // Gibt 3.14 aus
let a = 12, b = 3;
[a, b] = [b, a];
const [a, , b] = [1, 2, 3];
console.log(a, b);