Rest operator

Let's talk about javascript rest syntax. You can use it to put any number of arguments passed to a function into an array!

function myFunc(...args) {
                        console.log(args[0] + args[1]);
                    }
                    
                    myFunc(1, 2, 3, 4);
                    // 3