xxxxxxxxxx
// Example using the round function
let num = 3.14159;
let roundedNum = Math.round(num);
console.log(roundedNum); // Output: 3
xxxxxxxxxx
//There are meny ways of rounding...
Math.floor(5.5) //Answer 5, it alwas rounds down.
Math.round(5.5) //Answer 6, it simpily rounds to the closest whole number.
Math.ceil(5.5) //Answer 6, it alwas rounds up.
//You can do more things too...
Math.floor(5.57 * 10) / 10 //Answer 5.5, the number turns into 55.7, Then gets floored (55.0), Then gets divied, (5.5).
xxxxxxxxxx
Math.round(2.60); //3
Math.round(2.50); //3
Math.round(2.49); //2
Math.round(-2.60); //-3
Math.round(-2.50); //-2
Math.round(-2.49); //-2
xxxxxxxxxx
// Round a number
var number = 4.7;
var roundedNumber = Math.round(number);
console.log(roundedNumber); // Output: 5
xxxxxxxxxx
var myNumber = 33.55;
var output = Math.round(myNumber);
console.log(output)
//Output: 34;
xxxxxxxxxx
// The Math.round() method rounds a number to the nearest integer.
// 2.49 will be rounded down (2), and 2.5 will be rounded up (3).
// EXAMPLE: 1
let floating_num = Math.round(2.65);
console.log(floating_num);
// OUTPUT: 3
// EXAMPLE: 2
let floating_num_2 = Math.round(2.45);
console.log(floating_num_2);
// OUTPUT: 2
// EXAMPLE: 3
let floating_num_3 = Math.round(7.50);
console.log(floating_num_3);
// OUTPUT: 8
// EXAMPLE: 4
let floating_num_4 = Math.round(-2.65);
console.log(floating_num_4);
// OUTPUT: -3
// EXAMPLE: 5
let floating_num_5 = Math.round(-2.45);
console.log(floating_num_5);
// OUTPUT: -2
xxxxxxxxxx
//There are meny ways of rounding...
Math.floor(5.5) //Answer 5, it alwas rounds down.
Math.round(5.5) //Answer 6, it simpily rounds to the closest whole number.
Math.ceil(5.5) //Answer 6, it alwas rounds up.
//You can do more things too...
Math.floor(5.57 * 10) / 10 //Answer 5.5, the number turns into 55.7, Then gets floored (55.0), Then gets divied, (5.5)