// 1) Destructure array items const [first, second,, fourth] = [10, 20, 30, 40]; // 2) Destructure object properties const { PI, E, SQRT2 } = Math;