Find the Student that Will Replace the Chalk - Leet Code 1894 - Python - in three simple stepsSep 2, 2024·1 min read
Binary Search - Leetcode 704 - Python SolutionHey Everyone, today we will solve how to find a number in a sorted array according to its target using Binary Search. Step-1 Initialize the start pointer at the beginning of the array and the end pointer at the end of the array. def binary_search(num...Sep 13, 2024·2 min read
JavaScript Variable Declarations: var vs let vs const.Hello everyone, today we are going to discuss JavaScript Variable Declarations and the difference between them. There are three ways to declare variables in JavaScript var let and const . So, What's the difference between and why do we even bother? V...Oct 16, 2023·1 min read
How does JavaScript work?Hello everyone, it's been a while since I last wrote from now I'll try to be regular. So today, I am going to talk about how JavaScript works and try to keep it as simple as possible. we all know that JavaScript is a popular programming language con...Jun 14, 2023·3 min read
9 VS Code Extensions for Web Devs to Increase Productivity!!Visual studio code or VS code is one of the most used code editors in the developer community. Today, we are going to talk about the 9 best vs code extension that helps you to increase your work performance and saves your time. 1. IntelliCode Intelli...Jul 14, 2022·4 min read
Data Types in JavaScript!!!Every Programing language has some built-in data structures, but these data structures differ from one language to another. Today we are going to talk about JavaScript data types. There are two types of data structures in JavaScript. Primitive Dat...Jun 29, 2022·2 min read
A brief history of JavaScript!!!What is JavaScript? so, JavaScript is a scripting or programming language that allows us to implement complex features on web pages. Where HTML and CSS add structure and style to a website. For Example, javaScript that you might use every day includ...May 24, 2022·2 min read