수업소개
객체를 실제로 활용하는 사례를 살펴보면서, 객체란 서로 연관된 변수와 함수를 그룹핑하고 이름을 붙인 것이라는 말의 의미를 음미해봅시다.
강의1
이미 우리가 객체를 사용해왔음을 확인해봄으로서 객체가 멀리 있는 것이 아니라는 것을 느껴보는 영상입니다.
코드
built-in.js (변경사항)
console.log("Math.PI", Math.PI); console.log("Math.random()", Math.random()); console.log("Math.floor(3,9)", Math.floor(3.9));
강의2
우리도 객체를 만들어서 연관된 변수와 함수를 정리 정돈 해봅시다!
코드
built-in.js (변경사항)
console.log("Math.PI", Math.PI); console.log("Math.random()", Math.random()); //method console.log("Math.floor(3,9)", Math.floor(3.9)); var MyMath = { PI:Math.PI, random:function(){ return Math.random(); }, floor:function(val){ return Math.floor(val); } } console.log("MyMath.PI", MyMath.PI); console.log("MyMath.random()", MyMath.random()); console.log("MyMath.floor(3.9)", MyMath.floor(3.9)); var MyMath_PI = Math.PI; function MyMath_random(){ return Math.random(); } function MyMath_floor(val){ return Math.floor(val); }
댓글미션
객체를 이용하면 무엇이 좋은지 댓글로 설명해보시고, 다른 사람의 댓글과 비교해보세요.