Back
Welcome to Intellipaat Community. Get your technical queries answered by top developers!
There are many ways by which we can convert a float number to a whole number in Javascript
Method 1: For truncate:
Ex:
var intvalue = Math.floor(value);
Method 2: For roubd
var intvalue = Math.round(value);
31k questions
32.8k answers
501 comments
693 users