/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.rasikjain.com
| | waspdev.com
3.2 parsecs away

Travel
| | The list of JavaScript features that every web developer should know in 2025 in order to efficiently code in JavaScript.
| | www.binovarghese.com
4.2 parsecs away

Travel
| | A higher order function is a function that takes one or more functions as arguments, or returns a function as its result.
| | markodenic.com
1.4 parsecs away

Travel
| | Explanations and examples included. Check it out.
| | www.hillelwayne.com
34.0 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.