You are reading a single comment by @Asynchronous and its replies. Click here to read the full conversation.
  • 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!::

    console.log(Number.isInteger(1));
    

    How can I install the Number class into my Bangle.js? Is there any way to fix this?

About