This is the situation that you can never avoid as a developer. Assigning value to a variable based on a condition. So in this article, we will have a look at different approaches you can take for doing this trivial looking task(Trust me sometimes it ...
We all learn things in our lives through some lessons and not surprisingly sometimes the lessons are a bit harsh. I am just sharing the lesson I learned today i.e. You need to give your feedback in a constructive manner, The one in front of you is ...
After reading this article you'll be confident using arrays in JavaScript Need ?? Consider a case when you want to store lots of data e.g. all your favorite pizzas or tacos. How will you store all the names in your program? Will you create 10 differe...
Unboxing JavaScript We all have that model in our mind that a variable is a box containing some value e.g. let a contains 10. Let me ask you a simple question. What is a variable? You might have answered that variable is a box in memory that holds so...