Have you ever seen or used … (three dots) operator in JavaScript. This operator is known as Spread and also the Rest depending on how it is used. Let’s go through both of them one by one. Spread Operator let myArray = [ 1 , 2 , 3 , 4 , 5 ]; let new...