find the value of each expression
math.ceil(math.PI)
Answers
Answered by
1
console.log(Math.ceil(.95));
// expected output: 1
console.log(Math.ceil(4));
// expected output: 4
console.log(Math.ceil(7.004));
// expected output: 8
console.log(Math.ceil(-7.004));
// expected output: -7
Similar questions
English,
6 months ago
Math,
6 months ago
India Languages,
6 months ago
English,
1 year ago
Math,
1 year ago