Explore >> Select a destination


You are here

cloudblogger.co.in
| | www.hillelwayne.com
3.9 parsecs away

Travel
| | What does this print? x = 1 x --> 0 Think it through, then try it in a browser console! Answer and explanation in the dropdown. Show answer It prints 1. wait wtf At the beginning of a line (and only at the beginning of a line), --> starts a comment. The JavaScript is parsed as x=1; x; // 0 The browser then displays the value of the last expression, which of course is 1.
| | manuel.kiessling.net
2.8 parsecs away

Travel
| | Writing JavaScript modules that can be seamlessly included in client-side as well as server-side applications, and providing Jasmine test suites which allow to test these modules in a browser environment as well as a Node.js environment is possible without any dirty workarounds.
| | cassidoo.co
4.8 parsecs away

Travel
| | Where will your logs be? Depends on where you call them.
| | blog.robbowley.net
20.4 parsecs away

Travel
|