6 followers
Frontend Engineer
Version control systems make collaboration seamless in software development. Git is a version control system used for source code management. It is...
When referring to accessing object properties in JavaScript, there are two different syntax - dot notation and bracket notation. It can be confusing...
Once you've started learning to code, one of the things you'd so often encounter is a README file while reviewing, learning from or contributing to...
Recursion is a concept that describes a function calling itself inside itself or simply when a function calls itself. So in other words, the solution...
A pointer in C is simply a type of data that we can use inside of programs. The way an integer data type will hold a number, a pointer data type holds...