template literals, 文字模板

const world = "world"
`hello ${world}`

arrow functions, 箭头函数

fetch(`quotes.json`).then(res => res.json())