JSFiddle - React, Tailwind, and code Playground
JavaScript
round_up = function(x,factor){ return x - (x%factor) + (x%factor>0 && factor);}
alert(round_up(9,4));
round_up = function(x,factor){ return x - (x%factor) + (x%factor>0 && factor);}
alert(round_up(9,4));