반응형
1. Math.floor()
소수점 이하를 버리는 method
var q = Math.floor(13 / 5)
console.log(q) // 2
2. Math.trunc()
소수점 이하를 전부 삭제하고 정수를 return하는 method
var q = Math.trunc(13 / 5)
console.log(q) // 2
3. parseInt
정수로 return 하는 method
var q = parseInt(13 / 5)
console.log(q) // 2
4.~~(num1/num2)
더블 틸트 연산자
var q = ~~(13 / 5)
console.log(q) // 2
속도는 4 > 1 > 3 (빠름->낮음) 이라고 합니다
참고 : https://dev.to/asadm/the-mysterious-double-tilde-operation-mih
반응형
'📍 Front-End > 🜸 코딩테스트' 카테고리의 다른 글
자바스크립트 slice()와 splice()의 차이 (0) | 2023.08.30 |
---|
댓글