PHP's bcdiv in JavaScript

Here’s what our current JavaScript equivalent to PHP's bcdiv looks like.

module.exports = function bcdiv (leftOperand, rightOperand, scale) {
// discuss at: https://locutus.io/php/bcdiv/
// original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)
// example 1: bcdiv('1', '2')
// returns 1: '0'
// example 2: bcdiv('1', '2', 2)
// returns 2: '0.50'
// example 3: bcdiv('-1', '5', 4)
// returns 3: '-0.2000'
// example 4: bcdiv('8728932001983192837219398127471', '1928372132132819737213', 2)
// returns 4: '4526580661.75'
const _bc = require('../_helpers/_bc')
const libbcmath = _bc()
let first, second, result
if (typeof scale === 'undefined') {
scale = libbcmath.scale
}
scale = ((scale < 0) ? 0 : scale)
// create objects
first = libbcmath.bc_init_num()
second = libbcmath.bc_init_num()
result = libbcmath.bc_init_num()
first = libbcmath.php_str2num(leftOperand.toString())
second = libbcmath.php_str2num(rightOperand.toString())
result = libbcmath.bc_divide(first, second, scale)
if (result === -1) {
// error
throw new Error(11, '(BC) Division by zero')
}
if (result.n_scale > scale) {
result.n_scale = scale
}
return result.toString()
}
[ View on GitHub | Edit on GitHub | Source on GitHub ]

How to use

You you can install via npm install locutus and require it via require('locutus/php/bc/bcdiv'). You could also require the bc module in full so that you could access bc.bcdiv instead.

If you intend to target the browser, you can then use a module bundler such as Parcel, webpack, Browserify, or rollup.js. This can be important because Locutus allows modern JavaScript in the source files, meaning it may not work in all browsers without a build/transpile step. Locutus does transpile all functions to ES5 before publishing to npm.

A community effort

Not unlike Wikipedia, Locutus is an ongoing community effort. Our philosophy follows The McDonald’s Theory. This means that we don't consider it to be a bad thing that many of our functions are first iterations, which may still have their fair share of issues. We hope that these flaws will inspire others to come up with better ideas.

This way of working also means that we don't offer any production guarantees, and recommend to use Locutus inspiration and learning purposes only.

Examples

Please note that these examples are distilled from test cases that automatically verify our functions still work correctly. This could explain some quirky ones.

#codeexpected result
1bcdiv('1', '2')'0'
2bcdiv('1', '2', 2)'0.50'
3bcdiv('-1', '5', 4)'-0.2000'
4bcdiv('8728932001983192837219398127471', '1928372132132819737213', 2)'4526580661.75'

« More PHP bc functions


Star