Javascript 에서 이중 느낌표(!!) 연산자는 boolean으로 형 변환을 하는 기능을 합니다.
const a = [1, 2, 3]
const is_a_truthy = !!a; // true
const b = null;
const is_b_truthy = !!b; // false
const c = 0;
const is_c_truthy = !!c; // false
const d = "0";
const is_d_truthy = !!d; // true
'Development > Javascript & TypeScript' 카테고리의 다른 글
[VSCODE] 사용되지 않는 import 자동으로 제거하는 단축키 (0) | 2023.04.07 |
---|---|
[JavaScript] 배열의 마지막 element 가져오는 방법 세가지 (0) | 2023.03.27 |
[Javascript] 두 변수의 값 바꾸기(Swap) (0) | 2023.02.07 |