<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Math 객체</title>
</head>
<body>
<script>
document.write(Math.pow(8, 2) + "<br>");
document.write(Math.random() + "<br>");
document.write(Math.floor(4.7) + "<br>");
document.write(Math.ceil(4.4) + "<br>");
document.write(Math.ceil(-11.9)+"<br>");
document.write(Math.round(4.7)+"<br>");
document.write(Math.abs(-4.4)+"<br>");
document.write(Math.sqrt(64)+"<br>");
</script>
</body>
</html>
Math.ceil() 메소드는 인수로 전달받은 값과 같거나
큰 수 주에서 정수값을 반환합니다.