JSFiddle - React, Tailwind, and code Playground
JavaScript
function countArguments(...args) {
console.log(args.length);
}
// get the number of arguments
countArguments('welcome', 'to', 'Earth');
function countArguments(...args) {
console.log(args.length);
}
// get the number of arguments
countArguments('welcome', 'to', 'Earth');