Math Round Example

Round a number using Math.round.

Preview

Code

<script>
let value = 4.7;

let rounded = Math.round(value);

console.log(rounded);
</script>

More JS Numbers Examples (7)