Math.ceil() 올림 : 반환(숫자) { 1. 기본값 : 1.34 메서드 : ceil(1.34) ocument.querySelector(".sample1_R11").innerHTML = Math.ceil(1.34); //결과값 : 2 2. 기본값 : 1.64 메서드 : ceil(1.64) document.querySelector(".sample1_R12").innerHTML = Math.ceil(1.64); //결과값 : 2 3. 기본값 : -1.34 메서드 : ceil(-1.34) document.querySelector(".sample1_R13").innerHTML = Math.ceil(-1.34); //결과값 : -1 4. 기본값 : -1.64 메서드 : ceil(-1.64) document...
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) docu..
Math.round() 반올림 : 반환(숫자) { 1. 기본값 : 1.34 메서드 : round(1.34) document.querySelector(".sample1_R1").innerHTML = Math.round(1.34); //결과값 : 1 2. 기본값 : 2.34 메서드 : round(1.64) document.querySelector(".sample1_R2").innerHTML = Math.round(1.64); //결과값 : 2 3. 기본값 : 3.34 메서드 : round(1.5) document.querySelector(".sample1_R3").innerHTML = Math.round(1.5); //결과값 : 2 4. 기본값 : 3.34 메서드 : round(1.34) document.q..