var i = parseInt('6250'),
    res = (i / 100).toFixed(2);
3
solved Integer value to decimal only last 2 digit in Javascript
 
var i = parseInt('6250'),
    res = (i / 100).toFixed(2);
3
solved Integer value to decimal only last 2 digit in Javascript