“JS FLOOR A NUMBER” Kode Jawaban

Math.Floor JS

console.log(Math.floor(5.95));
// expected output: 5

console.log(Math.floor(5.05));
// expected output: 5

console.log(Math.floor(5));
// expected output: 5

console.log(Math.floor(-5.05));
// expected output: -6
BlackCat

JS FLOOR A NUMBER

// Math.floor returns the floor of a number
console.log(Math.floor(1.5)); // -> 1
// Using two bitwise not operators '~' you can also get the floor of a number
console.log(~~1.5); // -> 1
MattDESTROYER

Jawaban yang mirip dengan “JS FLOOR A NUMBER”

Pertanyaan yang mirip dengan “JS FLOOR A NUMBER”

Lebih banyak jawaban terkait untuk “JS FLOOR A NUMBER” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya