Remove all commas in a string
npm install remove-commas> Remove all commas in a string
When you need to remove those pesky commas from a string.
If no input is provided, the input will be read from the clipboard.
``sh`
npm install --global remove-commas
`
$ remove-commas --help
Usage
$ remove-commas
$ remove-commas
Examples
$ remove-commas 1,333,337
`
`sh`
npm install remove-commas
`js
import removeCommas from 'remove-commas';
console.log(removeCommas('1,333,337'));
// => 1333337
``