Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
console.log(Math.round(4.5)); // 5 console.log(Math.round(4.4)); // 4 console.log(Math.floor(4.9)); // 4 console.log(Math.ceil(4.1)); // 5 console.log(Math.trunc(-4.9)); // -4 console.log(Math.abs(-7)); // 7 console.log(Math.max(1, 5, 3, 9, 2)); // 9 console.log(Math.min(1, 5, 3, 9, 2)); // 1 console.log(Math.sqrt(16)); // 4 console.log(Math.PI); // 3.141592653589793 const rand = Math.floor(Math.random() * 6) + 1; console.log(rand); // random 1-6
Result
Open