Background: I would like to add and subtract numbers. I'm using HTML data-attributes. parseInt() and Number() aren't working as I thought they would be.
<div class="originalNumber" data-original-number="1,000,000">1,000,000</div>
<div class="bucket1" data-bucket="100,000">100,000</div>
<div class="bucket2" data-bucket="200,000">200,000</div>
<div class="bucket3" data-bucket="300,000">300,000</div>
I get the original number:
var getOriginal=$(".originalNumber").data("original-number");
console.log = 1,000,000
Now I would like to add and subtract from it. For example click bucket1 and 1,000,000 becomes 900,000 (1,000,000-100,000)
The problem is that I cannot turn the string into a number. I've tried using parseInt() and Number() to no avail.
var getOriginal=parseInt(getOriginal);
console.log(getOriginal);
returns 1
var getOriginal=Number(getOriginal);
console.log(getOriginal);
returns NaN
What am I missing here?
Try using a regex:
This will strip out anything but digits and decimals.