Web Portal
JavaScript Hoisting

JavaScript Hoisting

Puja Kundu

Puja Kundu

Feb 28, 2022

Hoisting is a default behaviour of JavaScript. It moves the declaration of variables and functions to the top of the current scope (script or function). In that way, a variable can be declared after it has been used and a function can be called before it is even written .

Continue reading
Build a Rock-Paper-Scissors-Lizard-Spock game

Build a Rock-Paper-Scissors-Lizard-Spock game

Puja Kundu

Puja Kundu

Mar 09, 2022

If you are familiar with Big Bang Theory, you must have heard about the Rock-Paper-Scissors-Lizard-Spock game. As Sheldon explains, "Scissors cuts paper, paper covers rock, rock crushes lizard, lizard poisons Spock, Spock smashes scissors, scissors decapitates lizard, lizard eats paper, paper disproves Spock, Spock vaporizes rock, and as it always has, rock crushes scissors."

Continue reading
JavaScript arrow function

JavaScript arrow function

freecodecamp

freecodecamp

Apr 15, 2022

An arrow function expression is a compact alternative to a traditional function expression, but is limited and can't be used in all situations.

Continue reading
JavaScript Array Methods

JavaScript Array Methods

freecodecamp

freecodecamp

Apr 16, 2022

In programming, an array is a collection of elements or items. Arrays store data as elements and retrieve them back when you need them.

Continue reading
Introduction to React

Introduction to React

freecodecamp

freecodecamp

Apr 16, 2022

React (also known as React.js or ReactJS) is a free and open-source front-end JavaScript library for creating UI component-based user interfaces.

Continue reading
React Higher Order Component

React Higher Order Component

Puja Kundu

Puja Kundu

Sep 18, 2022

Higher order component is a function that takes a component as a parameter and returns an enhanced or changed component. Higher Order Component (HOC) adds additional data or functionality to the original component and returns an enhanced version of it.

Continue reading

Recent Posts

Categories