From 4883df2ddc317c0987b4f8b7fa4adaefac68753d Mon Sep 17 00:00:00 2001 From: robiul Date: Sat, 4 Nov 2023 16:07:22 +0600 Subject: [PATCH] added few javascript article links --- javascript-resources.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/javascript-resources.md b/javascript-resources.md index f1c5061..f99aacb 100644 --- a/javascript-resources.md +++ b/javascript-resources.md @@ -149,7 +149,15 @@ 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`. @@ -157,6 +165,10 @@ While this list is primarily focused on learning React and Redux, and generally - **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/