<html>
<body>
<h1>JavaScript Math</h1>
<h2>The Math.ceil() Method</h2>
<p>Math.ceil() rounds a number UP to the nearest integer:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = Math.ceil(1.4);
</script>
</body>
</html>