ES6 Rest & Spread Explained Simply

preview_player
Показать описание
👕 Merch
Рекомендации по теме
Комментарии
Автор

best JavaScript channel I've met on YouTube

Talel_kraiem
Автор

This is so well explained. I went through an entire bootcamp and no one explained rest or spread this well.

Mesto
Автор

3:52 It's a new thing I learnt. Thanks 🙂

theotherme
Автор

I've used "spead" quite often, but never knows about "rest" before :) thanks!

alexanderm
Автор

Could you please create one video on What is bind, call, apply and prototype?

msrajawat
Автор

How rest works behind the scene, nobody explains. But basic explaination was good.

saumyadip
Автор

Can't we use both rest and spread together?
let c=[1, 2, 3 ];
function x (...rest) {}
x(...c);

nasreengousea