Question 35 of 10035%
35

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


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

getAge(21);
35/100