Intro This is the second episode of the “Programming Advice” series. If you did not read that, it is highly recommended to check out the “pilot” episode. Programming Advice: Naming Conventions Naming conventions are important in programming for numerous reasons. There are a lot of conventions. It highly depends on the programming language that you […]
Programming advice
General Programming Advice People are good at what they do most frequently. It is called experience. Experience cannot be faked, but the beautiful part is, it can be transferred. It is mainly gained by learning from mistakes. However, if you are a person who can accept advice from others, it is worth checking out this […]
Grid Traveler
The problem of Grid Traveler is one of the best problems you can use to learn recursion. It helps you better understand the basics of recursion. If you want to learn more about recursion, you can check out my other article here. So the problem goes like this, you are a two-dimensional grid traveler. You […]
Destructuring in JavaScript
Why do We Need Destructuring? There are many situations where one can face the operation of destructuring in JavaScript. Destructuring implies the function of breaking down a whole entity into numerous properties. As you may already guess, this is what you do all the time when working with data. Base Cases There are mainly two […]
How to Learn to Code?
Every day the programming community gets larger and larger, and it is the best time to ask how to learn to code? Learning to code is like learning a new language. When you learn a few words of a foreign language, it does not make you a native. The same goes for programming languages; learning […]
Coder vs Programmer
Many people don’t know the difference between coder vs. programmer. Nowadays, many people take the journey of programming, and as much as it pleases me, only a few of them happen to choose the right path. One of the most common mistakes is that people want to learn only for a month and get a […]
What is Object in JavaScript
JavaScript common sense. The only truth we need to remember is that everything you see in JavaScript is an object. This means that every bit of your code has the same abilities that an object would have. Please note that the last statement is an oversimplification. However, I hope you will get more comfortable with […]
Top 4 JavaScript Frameworks
What are JavaScript frameworks? It is always easier to find shortcuts and jump right to a solution. However, we should value the importance of basics before diving deep. This is how good coders become successful developers by simply starting from basics. Without further ado, the basis of this article is to be aware of frameworks. […]