Explore >> Select a destination


You are here

blog.javascripting.com
| | www.hillelwayne.com
5.3 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.
| | www.hugozap.com
6.4 parsecs away

Travel
| | A simple example of how to use WebAssembly in the browser and what the toolchain looks like.
| | wweb.dev
5.7 parsecs away

Travel
| | In this post, I will show how to set up debugging for Javascript in VS Code for Node.js and for React in Firefox or Chrome...
| | akos.ma
13.9 parsecs away

Travel
| Once upon a time, there was a programming environment made by Microsoft called Visual J++.