JSFiddle - React, Tailwind, and code Playground
JavaScript
function roundNumber(num){
var result = Math.round(num*100)/100;
return result;
}
alert(Math.round(5334.5));
function roundNumber(num){
var result = Math.round(num*100)/100;
return result;
}
alert(Math.round(5334.5));