const list = [1 + 2, 1 * 2, 1 / 2];console.log(list);
const one = false || {} || null;const two = null || false || '';const three = [] || 0 || true;...
function* generatorOne() { yield ['a', 'b', 'c'];}...