/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.tsmean.com
| | mariusschulz.com
1.6 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.
| | vladivanov.me
3.4 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.
| | www.hillelwayne.com
4.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.
| | keepinguptodate.com
24.4 parsecs away

Travel
| Learn how to add TypeScript support to your existing JavaScript projects so you can use TypeScript modules alongside your existing JavaScript modules.