Round Up Number TypeScript
var n = 4.3;
alert(Math.ceil(n)); //alerts 5
Cute Caterpillar
var n = 4.3;
alert(Math.ceil(n)); //alerts 5