-
MathJavaScript/자바스크립트 메서드 2023. 12. 13. 12:20
Math.abs()
숫자의 절대값을 반환한다.
Math.abs(3-5); // 2 Math.abs(5-3); // 2 Math.abs(1.23456-7.89012); //6.6555599999999995 Math.abs(''); // 0 Math.abs([]); // 0 Math.abs(null); // 0 Math.abs(undefined);// NaN
Math.max()
최대값을 반환한다.
Math.max(1,2,3,4,5,6) //6 //배열의 최대값 구하기 const arr = [1,2,3,4,5,6,7,8,9]; const max = Math.max(...arr) // 9
Math.min()
최소값을 반환한다.
Math.random()
0부터 1미만의 부동 소수점을 반환한다.
Math.random(); // 0~1미만의 부동소수점을 반환 //1~100까지의 랜덤한 정수를 얻고 싶다면 console.log(Math.floor(Math.random()*100)+1) //1~100중 랜덤한 정수 반환
정수로 변환하는 메서드
Math.floor()
소수점을 내림하여 정수로 반환
숫자를 바닥(floor)으로..
console.log(Math.floor(5.95)); //5 console.log(Math.floor(5.05)); //5 console.log(Math.floor(5)); //5 console.log(Math.floor(-5.05)); //-6
Math.ceil()
소수점을 올림하여 정수로 반환
숫자를 천장(ceil)으로..
Math.ceil(0.95); // 1 Math.ceil(1.00001) //2 Math.ceil(4); // 4 Math.ceil(7.004); // 8 Math.ceil(-0.95); // -0 Math.ceil(-4); // -4 Math.ceil(-7.004); // -7
Math.round()
소수점을 반올림하여 정수로 반환
console.log(Math.round(0.9));//1 console.log(Math.round(5.95), Math.round(5.5), Math.round(5.05)); //6 6 5 console.log(Math.round(-5.05), Math.round(-5.5), Math.round(-5.95)); // -5 -5 -6
Math.trunc()
소수점을 제거하여 정수로 반환
console.log(Math.trunc(13.37)); //13 console.log(Math.trunc(42.84)); //42 console.log(Math.trunc(0.123)); //0 console.log(Math.trunc(-0.123)); // -0