I ran into an issue where I cannot access a method of Number called isInteger..
if (!(Number.isInteger(schedule[letter][day][event]["Duration"]))) throw "Validation failed";
Running the following code returns Uncaught Error: Function "isInteger" not found!::
Uncaught Error: Function "isInteger" not found!
console.log(Number.isInteger(1));
How can I install the Number class into my Bangle.js? Is there any way to fix this?
@Asynchronous started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I ran into an issue where I cannot access a method of Number called isInteger..
Running the following code returns
Uncaught Error: Function "isInteger" not found!
::How can I install the Number class into my Bangle.js? Is there any way to fix this?