Give an example of Math.Ceil method?

 Posted by Rajesh_Kumar on 2/14/2014 | Category: JavaScript Interview questions | Views: 2620 | Points: 40
Answer:

Below are the example of math.Ceil method:

Math.ceil(.80);
//Output would be 1
Math.ceil(10); 
//Output would be 10
Math.ceil(9.45);
//Output would be 10


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response