JavaScript wrt boolean, undefined 및 null의 유형 변환
1107 단어 javascriptbeginners
let a = 5;
typeof(a);
> "number"
typeof(String(a));
> "string"
let b = true;
String(b);
> "true"
let c = undefined;
String(c);
> "undefined"
let d = null;
String(d);
> "null"
유사하게, 숫자로 바꾸려면number 클래스를 사용할 수 있습니다
let a = "5" ;
typeof(a);
> "string"
typeof(Number(a));
> "number"
let b = true;
Number(b);
> 1
let c = undefined;
Number(c);
> NaN
let d = null;
Number(d);
> 0
//when an operator is there it auto converts
// to number unless its a + operator
let e = "6" / "2";
e
>3
let e = "6" + "2";
e
>62
부울 값으로 변환하려면 문자열과 숫자와 유사한 부울 클래스를 사용합니다.
let a = "5" ;
typeof(a);
> "string"
typeof(Boolean(a));
> "boolean"
let b = true;
Boolean(b);
> true
let c = undefined;
Boolean(c);
> false
let d = null;
Boolean(d);
> false
Reference
이 문제에 관하여(JavaScript wrt boolean, undefined 및 null의 유형 변환), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/bishnucit/type-conversion-in-javascript-wrt-boolean-undefined-and-null-22ci텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)