Show how to specify a binary literal.
let a = 0b00001111;
Show and example of octal notation.
let a = 017;
Show how to test that a number is an Integer.
console.log(Number.isInteger(a));
true or false
What’s the difference between isNaN(value) and
Number.isNaN(value)?
isNaN returns true whenever it’s argument is not a number.
Number.isNaN on the other hand only returns true if the value of its argument is literally “NaN”.
What function determines finite values
Number.isFinite();
What is Number.isSafeInteger?
All JavaScript numbers are float. IsSafeInteger values can fit in 64 bits without rounding.
What is the value that is considered the reasonable rounding error?
Number.EPSILON