Divides numberOne by numberTwo and takes the integer portion of the calculated value
floorDivide(5, 3) // '1'floorDivide(7, 3) // '2'floorDivide(-10, 3) // '-3'
Generated using TypeDoc
Divides numberOne by numberTwo and takes the integer portion of the calculated value
Example