이 글에서는 JavaScript가 유형을 결정하는 방법을 소개합니다. (코드 예)에는 특정 참고 값이 있습니다. 도움이 필요한 친구가 참고할 수 있기를 바랍니다.
JS의 typeof 메소드는 다음과 같이 데이터 유형을 확인할 수 있습니다.
console.log(typeof 2); // number console.log(typeof "2"); // string console.log(typeof true); // boolean console.log(typeof [2]); // object console.log(typeof {name:2});// object console.log(typeof function(){return 2});// function console.log(typeof new Date());// object console.log(typeof null); // object console.log(typeof undefined);// undefined
그러나 typeof는 숫자, 문자열, 부울 값, 메소드 및 기타 객체, 배열, 날짜, null 등만 구분할 수 있습니다. 객체이지만 여전히 구별할 수 없습니다.
Object.prototype.toString.call을 사용하여 이를 달성할 수 있습니다.
var getType = Object.prototype.toString; var res = getType.call(2); res = getType.call("2"); res = getType.call(true); res = getType.call([2]); res = getType.call({name:2}); res = getType.call(function(){}); res = getType.call(new Date()); res = getType.call(null); res = getType.call(undefined);
출력 결과는 다음과 같습니다.
[object Number] [object String] [object Boolean] [object Array] [object Object] [object Function] [object Date] [object Null] [object Undefined]
이러한 방식으로 JS의 데이터 유형을 구체적으로 구분할 수 있습니다.
요약: 위 내용이 이 글의 전체 내용입니다. 모든 분들의 공부에 도움이 되었으면 좋겠습니다. 더 많은 관련 튜토리얼을 보려면 JavaScript 비디오 튜토리얼을 방문하세요!
관련 권장 사항:
위 내용은 JavaScript는 유형을 어떻게 결정합니까? (코드 예)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!