[자바스크립트 JavaScript] Math객체의 다양한 메소드
console.log(Math.max(2, -10, 50, -12, 180)); // -12 절댓값 (Absolute Number) Math.abs(x)를 하면 x의 절댓값이 리턴됩니다. console.log(Math.abs(-30)); // 30 console.log(Math.abs(30)); // 30 최댓값 (Maximum) Math.max 함수에 파라미터로 여러 수를 넘겨주면, 그중 가장 큰 값이 리턴됩니다. console.log(Math.max(2, -10, 50, -12, 180)); // 180 최솟값 (Minimum) Math.min 함수에 파라미터로 여러 수를 넘겨주면, 그중 가장 작은 값이 리턴됩니다. console.log(Math.max(2, -10, 50, -12, 180)); //..