자바스크립트 유형 변환LOGIN

자바스크립트 유형 변환

JavaScript 유형 변환

Number()는 숫자로 변환되고, String()은 문자열로 변환되며, Boolean()은 부울 값으로 변환됩니다.

JavaScript 데이터 유형

JavaScript에는 5가지 데이터 유형이 있습니다.

string

number

boolean

object

function

3가지 객체 유형:

Object

Date

Array

2 데이터 값을 포함하지 않는 유형:

null

undefine

typeof 연산자

typeof 연산자를 사용하여 JavaScript 변수의 데이터 유형을 볼 수 있습니다.

아아아아다음 섹션
<html> <body> <script type="text/javascript"> var test=new Array(); if (test.constructor==Array) { document.write("This is an Array"); } if (test.constructor==Boolean) { document.write("This is a Boolean"); } if (test.constructor==Date) { document.write("This is a Date"); } if (test.constructor==String) { document.write("This is a String"); } </script> </body> </html>
코스웨어