I'm trying to create a javascript function that can take a fraction input string such as '3/2' and convert it to decimal—either as a string '1.5' or number 1.5
function ratio(fraction) {
var fraction = (fraction !== undefined) ? fraction : '1/1',
decimal = ??????????;
return decimal;
});
Is there a way to do this?

eval(fraction)would of course work, but only if you trust your input. – cdhowie Aug 22 '11 at 2:390.0065 + 0.0005 = 0.006999999999999999;– RobG Aug 22 '11 at 4:25