const approximatelyEqual = (v1, v2, epsilon = 0.001) => Math.abs(v1 - v2) < epsilon;
approximatelyEqual(Math.PI / 2.0, 1.5708); // true
Approximately equal
Checks if two numbers are approximately equal to each other
0 Comments
Add Comment
Log in to add a comment