Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
// Array spread - combining arrays const numbers = [1, 2, 3]; const moreNumbers = [4, 5, 6]; const combined = [...numbers, ...moreNumbers]; console.log(combined); // Array spread - converting string to array of characters const chars = [...'hello']; console.log(chars);
[ 1, 2, 3, 4, 5, 6 ] [ 'h', 'e', 'l', 'l', 'o' ]