JSFiddle - React, Tailwind, and code Playground

by Alex Yhap

HTML

<script src="https://getfirebug.com/firebug-lite-debug.js"></script>

JavaScript

var amount = '$49.99';
var pAmount = parseFloat(amount.replace(/\$|,/g, ''));
var rAmount = Math.round(pAmount);
console.log(rAmount);

var rpAmount = Math.round(parseFloat(amount.replace(/\$|,/g, '')));
console.log(rpAmount);