hi m showing some value in jquery and just wants to reduce it,
value showing:
  6.333333333333333
I just wants that it shows like this:
  6.3
how to do this because google is not showing more results about it
hi m showing some value in jquery and just wants to reduce it,
value showing:
  6.333333333333333
I just wants that it shows like this:
  6.3
how to do this because google is not showing more results about it
 
    
    Use round method:
var myNum = 6.333333333333333;
var rounded = Math.round( myNum * 10 ) / 10;
console.log(rounded);