When I type this sololearn crashes | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

When I type this sololearn crashes

Every time I type this code "window.onload = alert('You are a beta te" it crashes in cookie clicker beta. Also when I make a new line at the beginning it crashes too.

3rd Feb 2017, 1:40 PM
koder
koder  - avatar
2 Answers
+ 5
That's the second question I found about your code 'cookie clicker beta', without seeing it in your public profile ^^ Anyway... what do you call "crashes"? Where are "typing" this ( bad ) code? With this: window.onload = alert('Your are a beta te You'll get errors... even by "correcting" it as: window.onload = alert('Your are a beta tester'); As the 'onload' attribute need a function reference/definition ( don't forgot the semi-colon after closing bracket of function, as this is an assignement expression ): window.onload = function() { alert('Your are a beta tester'); }; ... this use definition of an anonymized function, but you can write as well: function my_onload_event() { alert('Your are a beta tester'); } window.onload = my_onload_event;
4th Feb 2017, 11:08 AM
visph
visph - avatar
+ 1
Try to clear the cache of Sololearn's app. Code playground behaves anyway quite slugghish on mobile.
3rd Feb 2017, 2:52 PM
seamiki
seamiki - avatar