Monthly Archives: May 2022

Hoisting in javaScript

Hoisting is a phenomenon in javaScript by which you can access variables and functions even before you have initialized them or you have put some value on them. you can access it without any error. Hoisting allows functions to be safely used in code before they are declared. for Example: var x=7; function getName(){ console.log(“hoisting Continue Reading »

Destructuring in JavaScript

The Destructuring introduced new features of ES6.JavaScript provides a mechanism to handle the array and properties of objects in a much more innovative way. this mechanism is called destructuring. destructuring means implies a complex structure into the simpler parts. Destructuring allows us to extract multiple properties from an object or an Array. It is a Continue Reading »

SDLC & Models

What is Software Development Life Cycle (SDLC)? Step by step process of developing an application is known as SDLC. SDLC is a process used by the software industry to design, develop and test high-quality software. Purpose of SDLC It aims to produce quality software that meets customer expectations and reaches completion within time & budget. SDLC Continue Reading »