Pre Course Home Next

JavaScript Interview Questions Tutorial

Javascript interview questions for Experienced

Q. What is a spread operator?
A. Spread operator allows iterables( arrays / objects / strings ) to be expanded into single arguments/elements. Let's take an example to see this behavior.

function calculateSum(x, y, z) {
  return x + y + z;
}

const numbers = [1, 2, 3];

console.log(calculateSum(...numbers)); // 6

 

Pre Course Home Next