const obj = { foo: 1 };
obj.bar = 2;
const speed = 'quick'; `The ${speed} brown fox jumps over the lazy dog.`
function mystery(...params) {
return params;
}
let a = mystery(1,23,4);
let name = 'Harry';
let occupation = 'wizard';
console.log(`Hi! My name is ${name}. I'm a ${occupation}.`);
[...[...'...']].length
typeof (function* f() { yield f })().next().next()
let some_text = "some string";
if(some_text.indexOf('str') !=-1){
return true;
}
let titleElements = document.querySelectorAll('.article .title') let titles = Array.from(titleElements).map( t => t.textContent ); console.log(titles);
class Slave { // ... };
const slave = Slave();
const [a, , b] = [1, 2, 3];
console.log(a, b);