using jquery, how would i find the closest match in an array, to a specified number
For example, you've got an array like this:
1, 3, 8, 10, 13, ...
What number is closest to 4?
4 would return 3
2 would return 3
5 would return 3
6 would return 8
ive seen this done in many different languages, but not in jquery, is this possible to do simply