[JavaScript] Math객체

정은아·2022년 10월 3일
0
post-custom-banner
<!DOCTYPE html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <title>Math 객체</title>
 </head>
 <body>
  <script>
	document.write(Math.pow(8, 2) + "<br>"); //math.pow(m,n) = m*n
	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() 메소드는 인수로 전달받은 값과 같거나
큰 수 주에서 정수값을 반환합니다.

profile
꾸준함의 가치를 믿는 개발자
post-custom-banner

0개의 댓글