Explore >> Select a destination


You are here

www.tsmean.com
| | www.hillelwayne.com
10.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.
| | vladivanov.me
10.8 parsecs away

Travel
| | What are modular systems in JavaScript? Why are there so many? What problems can arise from this and how can they be solved? And what to choose in 2023? I'll tell in this article.
| | mariusschulz.com
8.5 parsecs away

Travel
| | TypeScript 2.3 introduced a new --strict compiler option that enables a number of other compiler options related to stricter type checking.
| | janikvonrotz.ch
76.0 parsecs away

Travel
| In web development there are tons of programs and tools and due to that also complex and very different development strategies. Luckily dependency handling got a lot easier. For my Laravel project setup we will use 3 different package managers. Every package manager of course manages a different resource, we will use composer for php packages, npm for everything related to Node.js and Bower for web packages.