javascript

Javascript: Rest Parameters

The rest parameter is an ES6 syntax that is used to represent an indefinite number of elements as an array.

See arrays in Java

Example

function add(...elements){
let sum = 0;
for(let i of elements){
sum +=i;
} 
console.log(sum);
}

console.log(add(2,4,6)); //12

It can also be used to get the rest elements of an array.

Example

let snacks = ["meatpie", "sausage", biscuit", "pizza"];
let drinks = ["Coke", "Sprite", "Malt", "Fanta"];

snacks.push(...drinks);
console.log(snacks); //combines all elements of snacks and //drinks

Recent Posts

An Overview of JavaScript Frameworks in Web Development

JavaScript frameworks are essential tools in modern web development, providing pre-written code and templates to…

15 hours ago

10 Signs That Show You’re a Great Developer

Becoming a great developer involves more than just writing impeccable code; it requires a blend…

2 days ago

How YouTube’s Monetization Policy Works

In recent years, YouTube has become not only a platform for entertainment but also a…

3 days ago

JavaScript skills you need for React

JavaScript serves as the backbone of modern web development, and its proficiency is vital for…

4 days ago

How Facebook’s Monetization Policy Really Works

In the digital age, social media platforms have become more than just places to connect…

5 days ago

Mastering Event Handling in JavaScript: A Comprehensive Guide

Introduction: Events play a pivotal role in modern web development, enabling developers to create interactive…

1 week ago