We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// Code Snippet console.log('A'); setTimeout(() => console.log('B'), 0); setTimeout(() => console.log('C'), 5000); console.log('D');
The default code snippet seems to get executed instead of the one i'm pasting in...
Steps to reproduce:
The text was updated successfully, but these errors were encountered:
Looking at the console.log, it looks like ES6 => syntax is not supported.
Try this instead:
// Code Snippet console.log('A'); setTimeout(function B() { console.log('B'); }, 0); setTimeout(function C() { console.log('C'); }, 5000); console.log('D');
http://latentflip.com/loupe/?code=Ly8gQ29kZSBTbmlwcGV0CmNvbnNvbGUubG9nKCdBJyk7CnNldFRpbWVvdXQoZnVuY3Rpb24gQigpIHsgY29uc29sZS5sb2coJ0InKTsgfSwgMCk7CnNldFRpbWVvdXQoZnVuY3Rpb24gQygpIHsgY29uc29sZS5sb2coJ0MnKTsgfSwgNTAwMCk7CmNvbnNvbGUubG9nKCdEJyk7!!!
Sorry, something went wrong.
Thanks @jweinsteincbt, didn't think of that. Perhaps ES6 code has to result in an error...
No branches or pull requests
The default code snippet seems to get executed instead of the one i'm pasting in...
Steps to reproduce:
The text was updated successfully, but these errors were encountered: