soler98,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
$({ numberValue: 11837259904947 })
.animate({ numberValue: 900000000000000 },
{
duration: 240000000000,
easing: "linear",
step: function(val) {
val = Math.round(val);
val = val.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
$(".price").html(val)
}
})
});
</script>
</head>
<body>
<span class="price"></span>
</body>
</html>