2022-01-13 게시 됨2022-01-13 업데이트 됨javascript몇 초안에 읽기 (약 61 단어)?? vs || example.js12345678false || 'hi'; // hifalse ?? 'hi'; // false0 || 'hi'; // hi0 ?? 'hi'; // 0null ?? 'hi'; // hiundefined ?? 'hi'; // hi falsy 값(‘’, 0, false)을 포함한 값을 제공하기 위해 사용할 수 있다 참고 https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing_operator ?? vs ||https://chinsun9.github.io/2022/01/13/nullish-coalescing-operator/AuthorchinsungPosted on2022-01-13Updated on2022-01-13Licensed under#javascript