<!DOCTYPE html>
<title>My Example</title>
<p id="msg"></p>
<p>The <code>Math.ceil()</code> function returns the smallest integer greater than or equal to the provided number.</p>
<script>
document.getElementById("msg").innerHTML = Math.ceil(53.478);
</script>