function getAge(...args) { console.log(typeof args);}...
[1, 2, 3].map(num => { if (typeof num === "number") return; return num * 2;...
(() => { let x = (y = 10);})();...