Module

divideDeep

Divide a number with a divisor until the number is smaller than the divisor
Parameters:
Name Type Description
dividend The dividend
divisor The divisor
Author:
  • Sandy Lau https://github.com/sandylau333

View Source math/divideDeep.js, line 3

A tuple type of [quotient, depth]. Eg. for num = 40000, and divisor = 1000 -> [40, 1]