let name = rich console.log(`hello ${name}`) //output: hello rich var obj = { a:1, b:2 } var obj2 = { ...obj, ///destructuring c: 3 } var {a, ...rest} = obj2 //rest parameters console.log(rest) //output:{b: 2, c: 3}