function sum(a, b) { return a + b;}...
function getAge(...args) { console.log(typeof args);}...
[1, 2, 3].map(num => { if (typeof num === "number") return; return num * 2;...