JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://raw.github.com/LarryBattle/Ratio.js/master/src/Ratio.min.js"></script>
JavaScript
var val = 3/8;
var result = Ratio.parse(val).toQuantityOf(2,3,4).reduce().toString();
document.body.innerHTML += "result = " + result;