function getAge(...args) { console.log(typeof args);}...
let person = { name: "Lydia" };const members = [person];person = null;...
[1, 2, 3].map(num => { if (typeof num === "number") return; return num * 2;...