I'm using following Javascript code in one of my calculations:
var bx1 = parseFloat(tx9) * ( 70 / 100 );
The output of bx1 is showing in decimals. However, I want it to be no decimals. Looking for some help!    
Eg. bx1 = 700*70/100 = 489.999. I want it either 489 or 490, anything is fine.
 
     
    