Tutorial Gateway

  • C
  • C#
  • Java
  • Python
  • SQL
  • MySQL
  • Js
  • BI Tools
    • Informatica
    • Talend
    • Tableau
    • Power BI
    • SSIS
    • SSRS
    • SSAS
    • MDX
    • R Tutorial
    • QlikView
  • More
    • C Programs
    • C++ Programs
    • Python Programs
    • Java Programs
    • SQL FAQ’s

JavaScript CEIL

by suresh

The JavaScript CEIL function is a Math function used to return the smallest integer value, which is greater than or equal to the specified expression or a specific number. The syntax of the JavaScript CEIL Function is

Math.ceil(number);
  • If the number argument is a positive or negative number, the ceil function will return the ceiling value.
  • If the specified number argument is not a number, the JS ceil function will return NaN.
  • And if it is Null, ceil function returns Zero.

JavaScript CEIL Function Example

In this JS CEIL Function example, We are going to use this ceil function to find the ceiling values of different data types and display the output

<!DOCTYPE html>
<html>
<head>
    <title> JavaScript CEIL Function </title>
</head>
<body>
  <h1> JavaScript CEIL Function </h1>
  <p id = "Pos"></p>
  <p id = "Neg"></p>
  <p id = "Dec"></p>
  <p id = "Dec1"></p>
  <p id = "Neg_Dec"></p>
  <p id = "Neg_Dec1"></p>
  <p id = "Str"></p>
  <p id = "Exp"></p>
  <p id = "Null"></p>
  <script>
    document.getElementById("Pos").innerHTML = Math.ceil(20);
    document.getElementById("Neg").innerHTML = Math.ceil(-20);
    document.getElementById("Dec").innerHTML = Math.ceil(10.05);
    document.getElementById("Dec1").innerHTML = Math.ceil(10.95);
    document.getElementById("Neg_Dec").innerHTML = Math.ceil(-6.05);
    document.getElementById("Neg_Dec1").innerHTML = Math.ceil(-6.95);
    document.getElementById("Str").innerHTML = Math.ceil("JavaScript");
    document.getElementById("Null").innerHTML = Math.ceil(null);
  </script>
</body>
</html>

OUTPUT

JavaScript CEIL Function

ANALYSIS

  1. Within the first two statements, We used the CEIL Function directly on both the Positive integer and negative integer.
  2. Following four statements, We used the JavaScript CEIL Function on both the Positive and negative Decimal values.
  3. Next, we tried the CEIL Function on the String value. As we said before, this will return NaN as output
  4. Last, we tried CEIL Math function on Null value, and it returns Zero as output

Placed Under: JavaScript

  • SQL DML, DDL, DCL & TCL Cmds
  • SQL NOT EXISTS Operator
  • SQL UPDATE from SELECT
  • SQL AFTER UPDATE Triggers
  • SQL Get Column Names in Table
  • SQL IF ELSE
  • SQL ACID Properties
  • SQL FOR XML PATH
  • Java Two Dimensional Array
  • Java Perfect Number Program
  • Java Count Digits in a Number
  • C Compare Two Strings Program
  • C Print Prime Numbers 1 to 100
  • C program to Reverse a String
  • C Palindrome Number Program
  • C Program for Palindrome String
  • C Remove Duplicate String Chars
  • C Square of a Number Program
  • C Sum and Average of N Number
  • Python Fibonacci Series program
  • Python Area Of Circle Program
  • Python Prime Numbers 1 to 100
  • Python Program for Leap Year
  • Tableau Rank Calculation
  • Tableau Google Maps usage
  • Power BI Format Dates
  • Power BI Top 10 Filters
  • Power BI – Create Hierarchy
  • Power BI DAX Math Functions
  • Learn SSIS in 28 Days
  • SSIS Transformations
  • SSIS Incremental Load
  • SSRS Drill Through Reports
  • SSRS Drill Down Reports
  • R Programming Tutorial
  • C Tutorial
  • C# Tutorial
  • Java Tutorial
  • JavaScript Tutorial
  • Python Tutorial
  • MySQL Tutorial
  • SQL Server Tutorial
  • R Tutorial
  • Power BI Tutorial
  • Tableau Tutorial
  • SSIS Tutorial
  • SSRS Tutorial
  • Informatica Tutorial
  • Talend Tutorial
  • C Programs
  • C++ Programs
  • Java Programs
  • Python Programs
  • MDX Tutorial
  • SSAS Tutorial
  • QlikView Tutorial

Copyright © 2021 | Tutorial Gateway· All Rights Reserved by Suresh

Home | About Us | Contact Us | Privacy Policy