
타입기초_2020.10.26
·
BootCamp_Codestates/Pre Tech Blog
Achievement Goals 자바스크립트에서 원시 자료형과 참조 자료형이 무엇인지 알 수 있다. 원시 자료형 string, number, boolean, undefined 의 의미를 이해할 수 있다. 타입마다 다른 속성과 메소드가 있다는 것을 이해할 수 있어야 한다. typeof 를 활용하여 특정 값의 타입을 확인할 수 있다. == 및 !=가 타입 검사를 하지 못한다는 것을 알 수 있다. console.log(typeof 42); // expected output: "number" console.log(typeof 'blubber'); // expected output: "string" console.log(typeof true); // expected output: "boolean" console...