I want to truncate a number in javascript, that means to cut away the decimal part:
trunc ( 2.6 ) == 2
trunc (-2.6 ) == -2
After heavy benchmarking my answer is:
function trunc (n) {
return ~~n;
}
// or
function trunc1 (n) {
return n | 0;
}
As an addition to the @Daniel‘s answer, if you want to truncate always towards zero, you can:
Or:
Both will give you the right results for both, positive and negative numbers: