Home2020
Posted in General, Web Application

Javascript Variable Scope and Lifecycle

Variables are fundamental building blocks of any programming language. For better understanding any programming language we first have to understand variables. In Javascript, we can define a variable using these three keyword var, let, const. These three keywords behave differently in a different scenario. In this blog, we will look into the lifecycle and scope […]

Posted in General, Web Application

How To Use Visual Studio Code for Remote Development using SSH

Introduction Visual Studio Code is by far one of the best IDE for developers due to its large numbers of plugins, cross-platform, etc. We will be mainly focusing on Remote – SSH plugin for Visual Studio Code that will help us to connect to a remote server/system for application development using our local workstation cool!

Posted in React, Web Application

Learn How To Work On The React Portals

What is a Portal anyway? Well, as quoted in the google dictionary, its “a doorway, gate, or other entrance.” React v16.0 brought a similar concept of Portal that provides a way to transport a piece of UI into some other locations on to the DOM Tree while preserving its position in the React hierarchy, allowing it to maintain the properties […]