Best javascript Tutorial
eloquentjavascript.net
plainjs.com
speakingjs.com
exploringjs.com/es6
JavaScript Tutorial by Mozilla Developer Network
You-Dont-Know-JS
youmightnotneedjquery.com
33-js-concepts
Web APIs - MDN
Web Workers API - MDN
zonayed.js.org
sabe.io/classes/javascript
https://github.com/bradtraversy/50projects50days
Nested comments are not supported!
There may not be /*...*/
inside another /*...*/
.
Such code will die with an error:
/*
/* nested comment ?!? */
*
/
alert
(
'World'
)
;
Use hotkeys!
In most editors a line of code can be commented out by Ctrl+/ hotkey for a single-line comment and something like Ctrl+Shift+/ – for multiline comments (select a piece of code and press the hotkey). For Mac try Cmd instead of Ctrl.