Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added few javascript article links #152

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion javascript-resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,14 +149,26 @@ While this list is primarily focused on learning React and Redux, and generally
http://madhatted.com/2016/1/25/let-it-be
https://www.reddit.com/r/javascript/comments/44yjzo/let_it_be_how_to_declare_javascript_variables/
A look at how `var`, `let`, and `const` behave, and how using them communicates intent. Further discussion in the Reddit comments.


- **Javascript variables (Beginner thinking)**
https://robiul.dev/javascript-variables-beginner-thinking
A detailed discussion of Javascript variables for beginners.

- **Is javascript compiled or interpreted language?**
https://dev.to/robiulhr/is-javascript-compiled-or-interpreted-language-l20
Exploring the Nature of JavaScript: Understanding its Compilation and Interpretation

- **This in Javascript**
https://zellwk.com/blog/this/
Tries to demystify the behavior of the `this` keyword by explaining the six situations that can change the value of `this`.

- **Which Array Function When?**
https://dev.to/andrew565/which-array-function-when
A great explanation of the differences between the various methods that can loop over arrays (`map`, `filter`, `reduce`, and `forEach`), and when you should use each one.

- **JavaScript Loop Best Practices for Optimal Performance**
https://robiul.dev/javascript-loop-best-practices-for-optimal-performance
Maximizing JavaScript Loop Efficiency: Best Practices for Optimal Performance

- **What is This in Javascript?**
https://developer.telerik.com/topics/web-development/what-is-this-in-javascript/
Expand Down