Search code snippets, questions, articles...

Javascript ES6 Rest Parameters

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

const numbers = [1, 2, 3];

console.log(sum(...numbers));
Output
6

Search Index Data (The code snippet can also be found with below search text)

Javascript ES6 Rest Parameters
Was this helpful?
0 Comments
Programming Feeds
Learn something new everyday on Devsheet