Updated Division.js
This commit is contained in:
parent
c18596661f
commit
aa9e36d72c
@ -58,11 +58,13 @@ var rule = {
|
|||||||
nmb2 = nmb2.divide(integerNumber);
|
nmb2 = nmb2.divide(integerNumber);
|
||||||
});
|
});
|
||||||
result.add(new Division(mathContext, new Number(mathContext, nmb1), new Number(mathContext, nmb2)));
|
result.add(new Division(mathContext, new Number(mathContext, nmb1), new Number(mathContext, nmb2)));
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
//divide a by b (a/b = c)
|
//divide a by b (a/b = c)
|
||||||
result.add(variable1.divide(variable2));
|
result.add(variable1.divide(variable2));
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user