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
React-native's support for ES6 is fantastic, but one area where this could use some improvement is how let is handled.
When a developer is using Chrome for debugging, the let statement is fine and no errors are produced. However, when a dev switches to the native JS engine in the phone or emulator, you get a white-screen crash with no error messages. This can result in a very sad and painful debugging experience, that I can personally attest to 😢 .
It would be nice if the pre-compile step would throw an exception for let when bundling or to throw an error in Chrome's console. Is that possible?