AI-Human

AI vs Human Have you ever wondered how smart robots compare to humans? That’s what we’re exploring in this blog post! We’ll break down the differences between artificial intelligence (AI) and human intelligence in simple terms that everyone can understand. đź’ˇUnderstanding AI: First, let’s talk about AI. Imagine a super-smart computer that can learn, think, […]

Read More →
JavaScript Throttle and Debounce

JavaScript Throttle and Debounce Throttle In software development, particularly in the context of APIs or network requests, a throttle is a mechanism used to limit the rate at which requests or actions can be made.When you want an event to happen only once in an interval & only the first event is used. Understand Code […]

Read More →
javascript custom promise

JavaScript Custom Promise | Promise Polyfill 👉Let’s First Write JavaScript InBuilt Promise đź’ˇUnderstand the Promise approach – Promise function takes one parameter and that is an executable function.– When we call this Promise with the new keyword, it returns a promise object.– Executable function is like a higher order function that takes two function arguments […]

Read More →
JavaScript Promisify

JavaScript Promisify What is Promisification? Promisification represents transformation. It’s the conversion of a callback-accepting function into a promise-returning function. What are Callbacks? A JavaScript callback is a function that is supposed to run after another function’s completion. These are the functions that are passed to another function as arguments that are invoked inside that main function […]

Read More →
JavaScript Promise

JavaScript Promise and Callbacks đź’ˇWhat is the meaning of asynchronous? “Asynchronous,” often known as “async,” simply means “takes some time” or “occurs in the future, not now.” đź’ˇWhat are callbacks? There isn’t a special thing called a ‘callback’ in the JavaScript language, it’s just a convention.Instead of immediately returning some result like most functions, Callback-based […]

Read More →
CSS Display property

CSS Display Property 👉 Display property defines how an element will render into a page. Let’s first see all possible values of the display property. Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/display đź’ˇIn this article, we will see all the details of block, inline, and inline-block values. block property display: block; Line break – block creates line break before and […]

Read More →

queue using linked list | Implementation of Queue using Linked List | Queue in Javascript | queue js | javascript queue implementation | javascript queue data structure | queue data structure javascript | javascript queue example The queue rule says that insertion takes place at one end and deletion takes place at the other end, […]

Read More →

Insert node in Linked list | Linked list insertion | insertion in a linked list in data structure | Linked list insertion algorithm | How to insert a node in a linked list | Linked list insertion algorithm | Singly linked list node insertion | insert node in linked list program đź’ˇWhat is a Linked […]

Read More →
Insertion sorts

Insertion sort in data structure | insertion sort algorithm in data structure | insertion sort example | insertion sort javascript Insertion Sort is one of the simplest sorting techniques which you might have used in your daily lives while arranging a deck of cards. Since we insert one element at a time in its correct […]

Read More →

Selection Sort Algorithm | K’th Largest Element in Array | Find kth smallest element in the array | Selection sort in data structure | Selection Sort Algorithm in data structure | Selection sort program | What is selection sort? Selection sort is also known as IN-Place Sorting Algorithm. Rearranging the elements in a meaningful order […]

Read More →
Quicksort

Quick Sort Algorithm with example | Quick sort algorithm in data structure | Quick sort time complexity | Quick sort space complexity | Quick sort example | Quick sort in data structure | Quick sort program in data structure What is Quick Sort? Quick sort, also known as partition-exchange sort, is an in-place sorting algorithm. […]

Read More →

Dependency Inversion Principle with Example | Dependency Inversion Solid Principle | Dependency inversion principle | Dependency inversion | Solid dependency inversion | Dependency inversion principle javascript Please refer above blog post to Understand SOLID principles in JavaScript. In this post, we will learn the Last Solid principle of Dependency Inversion with an Example in Javascript. […]

Read More →
solid prinicple.

Object-Oriented Programming | Basic concepts of Oops | Oops concepts | Object-Oriented Programming | Solid principles interview questions | Solid principles of Oops | Solid principles javascript | Solid principles in Design Patterns | javascript oops | Liskov substitution principle example | Dependency inversion principle example | Interface segregation principle example | single responsibility principle […]

Read More →

ASCII Code of Characters | ASCII Code | ASCII Code of a to z | ASCII Code Table | Binary to ASCII Code | What is ASCII Code? | ASCII Code of 0 to 9 What is ASCII? đź’ˇASCII is a common data encoding type used for computer-to-computer electronic communication.ASCII assigns standard numeric values to […]

Read More →

Negative Binary Numbers | Negative binary to decimal | Negative binary numbers to decimal | 2’s complement | 2s complement calculator | 2s complement | 2’s complement of binary number | Negative number in binary | Negative Binary Numbers Representation ✔️Certainly! In the binary number system, negative numbers are represented using a system called “Two’s […]

Read More →

Factors of a number đź’ˇ What are the Factors of any number? Factors of any number (n) will be those numbers that exactly divide it and give a remainder as 0. This means that the two whole numbers whose product is given number (n) are the factors of that number. đź’ˇ What are the Prime […]

Read More →

LeetCode – Game of Life Problem | Solution with JavaScript Link – https://leetcode.com/problems/game-of-life/ Problem Statement – According to Wikipedia’s article: “The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970.” The board is made up of a m x n grid of cells, where each cell has […]

Read More →

Fibonacci series using recursion | Fibonacci series | Fibonacci series in javascript | Fibonacci series in javascript using recursion | Fibonacci series in javascript using while loop | program fibonacci series | program for Fibonacci series in javascript | Fibonacci series in JavaScript ES6 | fibonacci series using generator The Fibonacci Sequence is the series […]

Read More →

javascript coding interview question | javascript coding interview | javascript coding challenges | javascript coding practice | javascript coding examples | javascript practice exercises | coding questions in javascript | console programs javascript | javascript interview questions đź’ˇWhat is the output of the below program? đź’ˇ What is the output of the below program? Explanation […]

Read More →
coin change problem

LeetCode – Coin Change Problem Problem LeetCode Link – https://leetcode.com/problems/coin-change/ You are given an integer array coins representing coins of different denominations and an integer amount representing a total amount of money. Return the fewest number of coins that you need to make up that amount. If that amount of money cannot be made up by any combination of the […]

Read More →