21장 빌트인 객체
21.1 자바스크립트 객체의 분류
// Math는 표준 빌트인 객체로 전역 객체(globalThis,window 등)의 프로퍼티이다. console.log(Math.round(1.2));
21.2 표준 빌트인 객체
const strObj = new String('ojj');
console.log(typeof strObj); // object
const nubObj = new Number('ojj');
console.log(typeof nubObj); // object
const boolObj = new Boolean('ojj');
console.log(typeof boolObj); // object
21.3 원시값과 래퍼 객체
21.4 전역 객체
21.4.1 빌트인 전역 프로퍼티
21.4.2 빌트인 전역 함수
21.4.3 암묵적 전역
Last updated
