Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
3  
eval(fraction) would of course work, but only if you trust your input. – cdhowie Aug 22 '11 at 2:39
@cdhowie And in this case I do—thank you! – ryanve Aug 22 '11 at 2:57
1  
Note that there are many fractions that can't be exactly represented as decimal numbers (e.g. 1/3) and many decimals that can't be exactly represented in javascript: 0.0065 + 0.0005 = 0.006999999999999999; – RobG Aug 22 '11 at 4:25

4 Answers

up vote 13 down vote accepted

Since no one has mentioned it yet there is a quick and dirty solution:

var decimal = eval(fraction); 

Which has the perks of correctly evaluating all sorts of mathematical strings.

eval("3/2")    // 1.5
eval("6")      // 6
eval("6.5/.5") // 13, works with decimals (floats)
eval("12 + 3") // 15, you can add subtract and multiply too

People here will be quick to mention the dangers of using a raw eval but I submit this as the lazy mans answer.

share|improve this answer
1  
+1 since it is an easy solution and you have warned of the dangers. – paxdiablo Aug 22 '11 at 2:53
@Nat This is exactly all I need in this case. Thx! – ryanve Aug 22 '11 at 2:58
Not lazy, it's what eval is meant for - evaluating expressions that aren't known until runtime. – RobG Aug 22 '11 at 4:07
This is an old question, but I would like to understand what the dangers of using eval in this case would be? I'm new to JS but this solved my problem very nicely, however this is user inputted data so could this cause problems? – GiH Mar 4 at 20:35

Here is the bare bones minimal code needed to do this:

var a = "3/2";
var split = a.split('/');
var result = parseInt(split[0], 10) / parseInt(split[1], 10);
alert(result); // alerts 1.5

JsFiddle: http://jsfiddle.net/XS4VE/

Things to consider:

  • division by zero
  • if the user gives you an integer instead of a fraction, or any other invalid input
  • rounding issues (like 1/3 for example)
share|improve this answer
Thanks. That's pretty slick. I'll keep it in mind if I ever need the full deal, but right now all I need is the eval() method. – ryanve Aug 22 '11 at 3:04
3  
No need for parseInt, just use split[0]/split[1]. – RobG Aug 22 '11 at 4:08

Something like this:

bits = fraction.split("/");
return parseInt(bits[0],10)/parseInt(bits[1],10);
share|improve this answer
Thanks/works but in this case will use the eval() method. – ryanve Aug 22 '11 at 3:00
@PaulPRO Thanks for catching the edit. – ryanve Aug 22 '11 at 3:01

To convert a fraction to a decimal, just divide the top number by the bottom number. 5 divided by 3 would be 5/3 or 1.67. Much like:

function decimal(top,bottom) {
    return (top/bottom)
}

Hope this helps, haha

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.