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