js의 약한 유형은 많은 것을 혼란스럽게 만듭니다. 예를 들어, 강력한 유형의 언어에서 부울 유형이 아닌 변수가 if 조건에 배치되는 경우에는 이 작업이 필요합니다. . 유형 변환이 필요하지만 js에는 필요하지 않습니다. if 조건에서 공통 변수 유형의 성능을 테스트해 보겠습니다.
!function test1(){ <span style="color:#ff0000;">var a,b=-1,c= 1,d= 0,e=null,f=undefined,g='',h="";</span> if(!a){ console.log('a='+a) } if(!b){ console.log("b="+b) } if(!c){ console.log("c="+c) } if(!d){ console.log("d="+d) } if(!e){ console.log("e="+e) } if(!f){ console.log("f="+f) } if(!g){ console.log("g="+g) } if(!h){ console.log("h="+h) } }()
다양한 변수 유형을 설정하고 각각 if 조건에 넣습니다
실행결과
a=정의되지 않음
d=0
e=널
f=정의되지 않음
g=
h=
나는=거짓