목록Math Function (1)
seunghyun Note
29장(Math)
Math 많이 사용한다. 앞으로도 많이 써보자구! 1. Math 프로퍼티 Math.PI 말해뭐해 Math.PI; // -> 3.141592653589793 2. Math Method Math.abs 절대 절대값 Math.abs(-1); // -> 1 Math.abs('-1'); // -> 1 Math.abs(''); // -> 0 Math.abs([]); // -> 0 Math.abs(null); // -> 0 Math.abs(undefined); // -> NaN Math.abs({}); // -> NaN Math.abs('string'); // -> NaN Math.abs(); // -> NaN Math.round 둥글게 소수점 이하를 반올림! Math.ro..
스터디/모던자바스크립트 deep dive
2024. 1. 8. 10:37