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


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

getAge(21);