Question 20 of 5238%
20

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


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

getAge(21);
20/52