js to 2 decimal places code example

Example 1: javascript convert string to 2 decimal

var twoPlacedFloat = parseFloat(yourString).toFixed(2)

Example 2: javascript snumber two decimal places as string

let money = 1.6;

money.toFixed(2); // 1.60

Example 3: javascript show 2 decimal places

var myNumber=12.2345;
var myNumberWithTwoDecimalPlaces=parseFloat(myNumber).toFixed(2); //12.23

Example 4: javascript convert int to float with 2 decimal places

float_num.toFixed(2);

Example 5: js number with four decimal places

var myNumber = 2;

myNumber.toFixed(2); //returns "2.00"
myNumber.toFixed(1); //returns "2.0"

Example 6: javascript no decimal places

const removedDecimal = Math.trunc(decimal);
// returns 5