Answers for "data after comma in javascript"

22

thousands by comma javascript

function numberWithCommas(x) {
  return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}
Posted by: Guest on June-13-2020
0

javascript display 2 number after comma

var num = Number(0.005) // The Number() only visualizes the type and is not needed
var roundedString = num.toFixed(2);
var rounded = Number(roundedString); // toFixed() returns a string (often suitable for printing already)
Posted by: Guest on July-15-2021

Code answers related to "data after comma in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language