//내장객체 Math
console.log("Math.PI", Math.PI);
console.log("Math.random()",Math.random());//객체에 소속되어 있을때는 메소드, 메소드는 본질적으로 함수
console.log("Math.floor(2.6)",Math.floor(2.6));
//나만의 객체 만들어보기
//객체는 그룹핑해서 이름을 붙인것이다
let 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",MyMath.floor(5.8));
'Javascript' 카테고리의 다른 글
Constructor function(=생성자 함수, 객체를 찍어내는 함수) (0) | 2023.03.11 |
---|---|
this (=나, this가 속해있는 메소드가 속해있는 객체를 가리킴) (0) | 2023.03.11 |
Object loop (객체와 반복문) (0) | 2023.03.11 |
Object(= 객체, 서로 연관된변수와 함수를 그룹핑하고 이름을 붙인것) (0) | 2023.03.11 |
Pull Request (0) | 2023.03.09 |