|
You are here |
www.tsmean.com | ||
| | | | |
mariusschulz.com
|
|
| | | | | TypeScript 2.3 introduced a new --strict compiler option that enables a number of other compiler options related to stricter type checking. | |
| | | | |
vladivanov.me
|
|
| | | | | 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
|
|
| | | | | 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
|
|
| | | Learn how to add TypeScript support to your existing JavaScript projects so you can use TypeScript modules alongside your existing JavaScript modules. | ||