본문 바로가기

JS, TS

[Javascript] JS 자료형변환 (to String / to Number / to Boolean)

반응형

to String

  • String( number || boolean )
  • ( number || boolean ).toString()
  • "" + (number || boolean)
  • `${ number 변수명 || boolean 변수명 }`

 

to Number

  • Number( string || boolean )
  • parseInt( 정수형의 string ) or parseFloat( 실수형의 string )
  • + (string || boolean)
  • (string || boolean) * 1

 

to Boolean

  • Boolean( 숫자 || 문자열 || 객체 || undefined || null )
  • !! ( 숫자 || 문자열 || 객체 || undefined || null )

 


Number 확인 전역변수

 

 

  • isFinite( value ) : value가 숫자이면 true
  • isNaN( value ) : value가 숫자가 아니면 true

 

출처: https://snupi.tistory.com/101

 

 


 

출처: https://curryyou.tistory.com/186

반응형