NAN2 Javascript Falsy values 값들 JavaScript에서 거짓 값은 조건문과 같은 부울 컨텍스트에서 발견될 때 거짓으로 간주되는 값입니다. JavaScript에는 6개의 잘못된 값이 있습니다. false: 부울 값 false 자체. 0: 숫자 0(정수 또는 부동 소수점)은 거짓으로 간주됩니다. 0: 음수 0도 거짓으로 간주됩니다. NaN: 정의되지 않거나 표현할 수 없는 수학 연산의 결과를 나타내는 "Not-a-Number" 값은 거짓으로 간주됩니다. null: 개체 값이 의도적으로 없음을 나타내는 null 값은 거짓으로 간주됩니다. 정의되지 않음: 값이 할당되지 않은 변수를 나타내는 정의되지 않음 값은 거짓으로 간주됩니다. "": 빈 문자열(따옴표 안에 문자가 없음)은 거짓으로 간주됩니다. JavaScript의 다른 모든 값은 진실한 .. 2023. 4. 9. [javascript] how to parse string to number, Number, parseInt, + Number() converts the type whereas parseInt parses the value of input. Number('123'); parseInt('123', 10); +'123'; Parseing string with non-digit character Number('123 asf'); // NaN parseInt('123 asf'); // 123 As you see, parseInt will parse up to the first non-digit character. On the other hand, Number will try to convert the entire string. binary, decimal parseInt('0101'); // 101 parseInt('010.. 2022. 7. 12. 이전 1 다음