Determines if a reference is a Number.
Number
This includes the "special" numbers NaN, +Infinity and -Infinity.
NaN
+Infinity
-Infinity
If you wish to exclude these then you can use the native `isFinite' method.
angular.isNumber(value);
Reference to check.
True if value is a Number.
value