ECMA 2020 Changes
Features optional-chaining and nullish-coalescing 1. nullish-coalescing evaluation이 null 또는 undifined로 판단이 될 경우에는 fallback value를 설정할 수 있습니다. const person = {}; const name = person.fullName ?? "Anonymous"; //It prints "Hello, Anonymous" console.log(`Hello, ${name}!`); || 연산자와 유사하지만 "falsy" values (i.e. undefined, null, false, 0, 0n and "") 다음과 같은 값에 다 default를 설정하지만 nullish-coalescing은 nullish v..
2020.12.17