Math.abs(숫자);
Math.ceil(숫자);
Math.floor(숫자);
Math.max(숫자1, 숫자2, 숫자3);
Math.min(숫자1, 숫자2, 숫자3);
Math.round(숫자); // .5는 올림
Math.trunc(숫자);
Math.sign(숫자);
// 양수이면 1
// 0 이면 0
// 음수이면 -1
Math.random();
// 랜덤 범위 0<= 값 < 1
parseInt("숫자"); // 현재 숫자는 string 타입
parseFloat("숫자"); // 현재 숫자는 string 타입
Number("숫자"); // 현재 숫자는 string 타입
try{
...
} catch(e){
...
} finally{
...
}
09_javascriptStandardObject -> 04_Math
-> Math.html, Math.css, Math.js
11_tryCatchFinally
-> 01_error발생.html, 01.js, 02_tryCatch.html, 02.js, 03_tryCatch_finally.html, 03.js