#
6.Math()
#
목차
1. Math() 2. 주요메서드 예제 random min,max 자릿수
#
1. Math()
자바스크립트에 내장된 객체로 숫자 및 날짜를 처리하는 Number, Math, Date객체, 텍스트를 처리하는 String, RegExp등 여러 가지 객체가 있는데 그래픽처리에서는 Math() 객체가 많이 사용된다.자바스크립트에 내장된 객체로 숫자 및 날짜를 처리하는 Number, Math, Date객체, 텍스트를 처리하는 String, RegExp등 여러 가지 객체가 있는데 그래픽처리에서는 Math() 객체가 많이 사용된다.
#
2. 주요메서드
#
예제
#
random
const randomNum = Math.random();
console.log(randomNum);
#
min,max
const numbers = [3, 1, 7, 5, 2, 9];
// 최댓값 구하기
const maxNum = Math.max(...numbers);
console.log(maxNum);
// 최솟값 구하기
const minNum = Math.min(...numbers);
console.log(minNum);
#
자릿수
const floatNum = 3.14159;
// 버림
const floorNum = Math.floor(floatNum);
console.log(floorNum);
// 올림
const ceilNum = Math.ceil(floatNum);
console.log(ceilNum);
// 반올림
const roundNum = Math.round(floatNum);
console.log(roundNum);