How can you pass the elements of an array as individual arguments to a function using the spread syntax?
function.apply(args)
function(...args)
function.spread(args)
function(args)