Spread, Rest

keep in mind...

  1. spread expands the items referenced
  2. great for function arguments
  3. makes code shorter, but overuse can be confusing!
spread operator rest parameterarguments

spread operator

The spread operator, represented by consecutive 3 periods ... takes an iterable and expands it into the individual elements. There are a variety of useful things you can do with this.

concat arrays

Concating has never been easier. Try adding the 3rd array here below!

edit and re-run!
const first = ['nicolas', 'julia'];
const second = ['catherine', 'whitney'];
const third = ['rob', 'stacey'];

console.log('merging! '+ [...first, ...second])
merging! nicolas,julia,catherine,whitney

spread into key/value pairs

A useful feature is using the spread operator to turn an array into key value pairs. To output the elements 1 by 1, change the const spread value to brackets [] instead of curly braces {}.

edit and re-run!
const books = ["Don Quixote", "The Hobbit", "Old Yeller", "Black Beauty"];

const spread = {...books};
console.log(spread);
{"0":"Don Quixote","1":"The Hobbit","2":"Old Yeller","3":"Black Beauty"}

rest parameter

The rest parameter looks exactly the same as the spread, but gathers remaining elements and compacts them rather then expanding.

represent arguments

The rest parameter syntax allows us to represent an indefinite number of arguments as an array.

edit and re-run!
function sum(...args) {
  console.log('arguments are '+args);
};

sum('name', 'class', 'score');
arguments are name,class,score

create subarray

Another interesting thing you an do is take part of an array and turn it into a subarray. Look at an example from the page about destructuring. Please Note It MUST be placed at the end of the array! You would not be able to grab another named variable once you've put all remaining elements into the players subarray.

edit and re-run!
    const kids = ['nicolas', 'julia', 'catherine', 'sophia', 'william']
    let captain, cocaptain, players;
    const team = [ captain, cocaptain, ...players ] = kids;
    
    console.log('we created a subarray called players: ' +players);
    
we created a subarray called players: catherine,sophia,william

arguments

Functions have a special array-like object named arguments that contains all arguments by their index (weird as it's an object, not an array!) This can be very confusing if you are looking for a variable called arguments, as it is under the hood, and not something you'll find in the code that calls your function! Please Note arrow functions do not contain the arguments object.

edit and re-run!
function gradeStudent(){
  console.log('argument 1 is: '+arguments[0]);
  console.log('argument 2 is: '+arguments[1]);
  console.log('argument 3 is: '+arguments[2]);
};
gradeStudent('Carlos', 'History', 'B+');
argument 1 is: Carlos
argument 2 is: History
argument 3 is: B+

Research More...

  1. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax
  2. https://davidwalsh.name/spread-operator
  3. https://closebrace.com/tutorials/2018-03-14/js-quick-hits-8-the-spread-operator