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…
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…
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…