Answers for "js format value"

6

format amount in javascript

const formatToCurrency = amount => {
  return "$" + amount.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, "$&,");
};
formatToCurrency(12.34546); //"$12.35"
formatToCurrency(42345255.356); //"$42,345,255.36
Posted by: Guest on December-30-2019
22

javascript string format

//

const firstName = 'john';
const lastName = 'smith';

const output = `name: ${firstName}, surname: ${lastName}`;
// name: john, surname: smith
Posted by: Guest on April-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language