Number - mmedrano9438/peripheral-brain GitHub Wiki
The Number constructor contains constants and methods for working with numbers. Values of other types can be converted to numbers using the Number() function.
`Number("123"); // returns the number 123 Number("123") === 123; // true
Number("unicorn"); // NaN Number(undefined); // NaN `