span decimal
JavaScript
$(document).ready(function () {
var value = 2.00
value = value.toFixed(0);
$('body').append(value.toFixed('.')[0]);
});
$(document).ready(function () {
var value = 2.00
value = value.toFixed(0);
$('body').append(value.toFixed('.')[0]);
});