You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 5, 2022. It is now read-only.
If we only run console.log(a);, it will output JerryScript: cannot run javascript due to 'a' is undefined. But adding console.log(a) in setTimeout() and setInterval(), no exception thrown on both Arduino 101 and FRDM-K64F.
setTimeout(function() {
console.log(a);
}, 1000);
But using the same code on chrome, it will throw exception like this: Uncaught ReferenceError: a is not defined