 
      
    | You are here | manuel.kiessling.net | ||
| | | | | nickhayden.com | |
| | | | | WTF is strict mode? You might have seen your colleagues dropping in 'use strict' into their JavaScript code and wondered: WTF does that do? Another place you'll often see use stri... | |
| | | | | 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. | |
| | | | | andreabergia.com | |
| | | | | This post is part of the Languages Opinion series. Welcome back to my mini-series about programming languages. In this post, we will talk about what is probably the world's most used programming language: JavaScript. We will also discuss TypeScript, given its relevance and usage today. | |
| | | | | initialcommit.com | |
| | | In this article, we'll discuss some of the reasons there are so many programming languages to choose from. | ||