a function that takes the number as the argument and incriminates it by one in js code example
Example: Pass unknown number of arguments into javascript function
var print_names = function(...names) {
for (let i=0; i<names.length; i++) console.log(names[i]);
}