JavaScriptCheatSheet
JavaScriptCheatSheet copied to clipboard
Quick reference to the tremendously accessible high-level language of the web ^_^
Hey, I have added a helpful reference link for javascript in the read section that I think will best add to your content and give your readers a more diverse...
There's a section called: > The this of Parent Scopes And it starts by saying: > Since each function has its own `this` binding, whose value depends on the way...
In the subsection `Array Methods`: > With the exception of `forEach`, the above functions do not modify the array they are given. `forEach` behaves _exactly_ in the same manner as...
> In the same way, for the same purpose, we may use `var` but it has undesirable properties; e.g., its declarations are in the global scope and no error is...
The section on _Scopes and Statements_ only mentions block scope and global scope, and fails to mention _function scope_. This is related to #1