JavaScript

What, Why and How to Validate ?

Hey guys 👋🏻, In this article, let us learn about validation in case of application and learn about What, Why and How to Validate ?. What, Why and How to Validate ? To ensure that the data that you work with is the data in correct format, you need validation for it. Let us answer…

My Top 3 Server Side Technologies. What are yours ?

Hey guys 👋🏻, In this article, I will unveil My Top 3 Server Side Technologies that I work with. Node.js Node.js is a JavaScript Runtime for building scalable network applications. It is blazing fast and it is best to use when we have large number of concurrent connections active at a given point of time…

Understanding Primitives and Reference Types in JavaScript

Hey guys 👋🏻, In this article, let us cover the topic of Understanding Primitives and Reference Types in JavaScript. Primitive value is stored directly in the location that the variable accesses. And the Reference values are objects that are stored in the heap. Reference value stored in the variable location is a pointer to a location…

Backend Developer Roadmap (2021)

Hey guys 👋🏻, In this article, let us understand the roadmap that will help you in becoming a Backend Developer in 2021. Every website that we build these days need a backend to manage the business logic of the application. To manage huge data for an application you need a database along with a API…

10 JavaScript Projects Every Beginner Should Try

Hey everyone, In this article, let us see 10 JavaScript Projects Every Beginner Should Try. Introduction JavaScript is the language that powers the web and a language that you must know if you want to become a web developer. It is also one of the most popular programming languages in the community. In this article,…

Frontend Developer Roadmap

Hey guys 👋🏻, In this article, let us understand the roadmap that will help you in becoming a Frontend Developer in 2021. Step 1: First learn HTML, CSS and JavaScript Step 2: Work on your own projects to build skills and then work on LIVE projects. Go grab some internship to get some working experience…

A Brief Introduction to React.js

Hey everyone 👋🏻, In this article, let us cover a brief introduction to React.js Introduction React is an open source, front-end JavaScript Library for building modern sleek user interfaces. It is maintained by Facebook. It is used to create SPAs. Why React ? Uses component based architecture to structure your application. Allows you to write reusable components that…

Advanced Authentication and Authorization

Hey everyone 👋🏻, In this article, let us learn about one of the most important concepts that you as a developer must have a solid knowledge of and that is Advanced Authentication and Authorization. Advanced Authentication and Authorization Let us consider the case of resetting of the user password. Password Resetting You have to implement authentication…

Vue.js – Event Handling using v-on directive

Hey guys 👋🏻, In this post, let us talk about Event Handling in Vue.js using the v-on directive. For this post we will understand✔ Event Handling using v-on ✔ One Code Example Event Handling For user interactions we can use a special directive called as v-on to attach event listeners that perform some code or…

Where to filter the data – backend or frontend ?

Hey everyone, In this article, let us discuss about a very important question regarding filtering the data that we get from the database or API. So the question is :  Where exactly should we filter the data ?  🤔 Backend … ?  🤔 Frontend … ?  Well, the answer is :  It depends.  Let us…