Checks if two numbers are approximately equal.
// Returns trueconst approx = Chalkboard.numb.isApproxEqual(0.1 + 0.2, 0.3); Copy
// Returns trueconst approx = Chalkboard.numb.isApproxEqual(0.1 + 0.2, 0.3);
The first number
The second number
Optional
The precision to check
Checks if two numbers are approximately equal.
Example