Learning ReactjsYou can learn ReactJS easily Here's all you need to get started :raised_hands: 1.Components • Functional Components • Class Components • JSX (JavaScript XML) Syntax 2.Props (Properties) • Passing Props • Default Props • Prop Types 3.State • useState ...Oct 19, 2023·2 min read
Functions in JavaScript part-3Introduction to JavaScript functions: When developing an application, you often need to perform the same action in many places. For example, you may want to show a message whenever an error occurs. To avoid repeating the same code all over places, yo...Aug 18, 2023·5 min read
JavaScript Conditions & Loops (Part-2)Conditional statements in JavaScript allow you to make decisions in your code based on certain conditions or Conditional statements are used to perform different actions based on different conditions. These statements help control the flow of your pr...Aug 11, 2023·7 min read
JavaScript The beginning Part 1.What is Javascript JavaScript is a high-level, interpreted programming language primarily used for web development. It was created by Brendan Eich in 1995 and is designed to add interactivity, dynamic elements, and functionality to websites. Here's a...Aug 4, 2023·11 min read
How to Create a Responsive Layout Without Media QueriesWhen designing a responsive layout, it can be challenging to maintain fixed pixel values for margins and paddings. This is where relative units like em and rem come in handy. In this blog post, we will discuss how to create a responsive layout withou...Jul 5, 2023·1 min read
Let's understand the spread and rest operator in JavaScriptWhat is Spread Operator : The spread operator is denoted by three periods (...). It allows expressions to be expanded in places where multiple argument elements or variables are expected. Here are some common use cases of the spread operator: 1. Addi...Jul 5, 2023·3 min read