Question 24 of 5841%
24

Consider the below code snippets, What will be the output?


function getAge(...args) {
  console.log(typeof args);
}

getAge(21);
24/58