[1, 2, 3].map(num => { if (typeof num === "number") return; return num * 2;...
class Person { constructor(name) { this.name = name;...
const one = false || {} || null;const two = null || false || '';const three = [] || 0 || true;...