Callbacks in Javascript
Before diving into callbacks, we have to understand that, in javascript, functions are first-class objects. As such, we can dynamically create, …
Before diving into callbacks, we have to understand that, in javascript, functions are first-class objects. As such, we can dynamically create, …

In the previous post, we created an express.js application step by step. If you haven’t read that post, I suggest you do it because the basic …
In this post, we will learn how to create an express application with a database. Not only this, but also we will include a templating engine. For …
In the previous post, we saw some basic interesting facts in JavaScript. In the same way, we are going to view other interesting facts in this post. …
JavaScript, which was created to “make web pages alive”, is one of the feature-rich language. However, this scripting language has got …
JavaScript (ECMAScript) is one of the powerful scripting language which provides many features to developer. In the first place, it is the technology …
In the previous post, we implemented stacks, which is quite useful in real life. However, there is another data structure that we see everyday around …
In the previous post, we implemented linked list in C. In the same way, now we are going to implement stacks in c programming language by an example. …
Introduction Memory Allocation in C In this post, we will learn about the dynamic allocation of memory in C. Also, we should be able to understand the …
Before starting to implement linked list in C, let’s see what self-referential structures are. Also, you need to know about dynamic memory …