Quick actions

cmd+k|ctrl+k

Navigation

Languages

Destruct

Snippet info

Language

JavaScript

Visibility

public

Author

paulkotov

Created

2018-04-16T08:36:04Z

Updated

2021-04-21T21:00:32.826182Z

const [ head, ...tail ] = [ 1, 2, 3, 4, 5 ];

// const head = ([ head, ...tail ]) => head;
// const tail = ([ head, ...tail ]) => tail;

// console.log( head([1,2,3]) );
// console.log( tail([1,2,3]) );

 console.log(tail);
INFO