JSFiddle - React, Tailwind, and code Playground

by chrislkeller

HTML

<div id="push"></div>

CSS

#push { 
    text-align: center;
    margin: 15px 0 0 0;
    font-size: 16px;
}

JavaScript

// 'num' is the number to round
// 'round' is the number of decimals to round to
var percentify = function(num, round) {
    return num.toFixed(round) + "%";
};

document.getElementById("push").innerHTML = percentify(56.125524, 3);