Blog
Learn about module design pattern in JavaScript
· ā˜• 4 min read · āœļø Adesh
One of the most commonly used JavaScript design patterns is a Module design pattern. It is easy to use module design pattern and it creates encapsulation of our code.

Understand Shallow And Deep Copy In JavaScript
· ā˜• 5 min read · āœļø Adesh
Understanding shallow and deep copy in JavaScript is very important. In this tutorial, we will learn about what is a shallow and deep copy in JavaScript.

How to create and combine views in SwiftUI
· ā˜• 5 min read · āœļø Adesh
This tutorial follows the Apple Developer demo app for creating and combining views in SwiftUI. Let's play with SwiftUI.

Looking at the Security Improvements of HPā€™s New Spectre Laptop
· ā˜• 4 min read · āœļø Adesh
One area many consumers tend not to focus on when shopping for laptops is _security._ Odd, considering that laptops are perhaps the most vulnerable types of PCs since they are used _everywhere_, from the library to the coffee shop.

Object Mutation In JavaScript
· ā˜• 5 min read · āœļø Adesh
In this blog, we will learn about object mutation in JavaScript. We will learn why it is so important to learn about mutation in Javascript. We will also discuss why mutation is bad and how to solve data mutation problem.

Create A React App With Webpack And Babel
· ā˜• 5 min read · āœļø Adesh
There is a great official way introduced by Facebook to start a React project using create-react-app. This command will create a basic React app without any build configuration which is recommended for anyone who is getting started with React.

What Is JavaScript Callback And How Does It Work?
· ā˜• 4 min read · āœļø Adesh
In this blog, we will learn about what is JavaScript callback and how does it work. I will provide some examples of JavaScript callback functions as well.

Remove An Item From The Array Using JavaScript Splice()
· ā˜• 3 min read · āœļø Adesh
One of the common operations with an array is removing the item. We will learn about how to remove an item from an array using JavaScript Splice() function.

Add An Item To An Array Using JavaScript Splice()
· ā˜• 2 min read · āœļø Adesh
Find out how to add an item to an array using JavaScript Splice(). The Array.splice() method is an inbuilt method in JavaScript which is used to modify the contents of an array by removing the existing elements and/or by adding new elements.

Understanding Angular Modules and Its Types
· ā˜• 3 min read · āœļø Adesh
Angular is a platform and framework for building client applications in HTML and TypeScript. Understanding the different types ofĀ Angular modules is a key factor for architecting or refactoring an application.