numbers-with-commas
v1.0.4
Published
simple javascript package for numerical formmat
Downloads
1
Readme
numberWithCommas
simple javascript package for numerical formmat
Install:
npm i numbers-with-commas
Usage:
react:
import numberWithCommas from "number-with-commmas";
<span>{numberWithCommas(123456)}</span>; // => 123,456
nodeJs:
const numberWithCommas = require("number-with-commmas");
numberWithCommas(123456); // => 123,456