티스토리 뷰

Javascript

Math.floor()

근혁 2022. 5. 1. 23:15

Math.floor()

버림 : 반환(숫자)

{
1.    기본값 : 3.34	
      메서드 : floor(1.34)

      document.querySelector(".sample1_R4").innerHTML = Math.floor(1.34);
      //결과값 : 1

2.    기본값 : 3.34	
      메서드 : floor(1.64)

      document.querySelector(".sample1_R8").innerHTML = Math.floor(1.64);
      //결과값 : 1

3.    기본값 : -3.34	
      메서드 : floor(-1.34)

      document.querySelector(".sample1_R9").innerHTML = Math.floor(-1.34);
      //결과값 : -2

4.    기본값 : 3.34	
      메서드 : floor(-1.64)

      document.querySelector(".sample1_R10").innerHTML = Math.floor(-1.64);
      //결과값 : -2

}

'Javascript' 카테고리의 다른 글

Math.trunc()  (0) 2022.05.01
Math.ceil()  (0) 2022.05.01
Math.round()  (0) 2022.05.01
charAt()  (0) 2022.04.17
startsWidth(), endWidth()  (0) 2022.04.17
댓글
© 2018 webstoryboy