Function Performance check

const myAwesomeArray = [1, 2, 3, 4, 5] const startForEach = performance.now() myAwesomeArray.forEach(x => (x +...
Read More ⟶

Check word score in a string

// Capital letter - 1 // small letter - 2 // number - 3 // spl char - 4 let str = "l. lorem ip 123"; let...
Read More ⟶

Angular command

The above command generate about module and it will also generate about component and add module route in app...
Read More ⟶

JIT and AoT in Angular

In this another small article I am going to explain what is different between JIT and AoT in Angular and which one is...
Read More ⟶

JavaScript recursive method to find Fibonacci sequence of numbers

Hello Guys, In this small article I am going to show you how with JavaScript recursive method to find Fibonacci...
Read More ⟶

JavaScript Algorithm to find all possible anagram of a string

JavaScript Algorithm to find all possible anagram of a string. let genAnagrams = (word, n, anagram = '', anagrams...
Read More ⟶

Recursive method to add sum of integers

In this small article I am going to show you how we can easily perform a recursive method to add sum of integers till...
Read More ⟶

How to get git origin url from the local repository

Sometime we might just need to know the git url where we are updating all our day to day work. It might be the reason...
Read More ⟶

Debounce in JavaScript

Debounce in JavaScript generally states that you want to delay a function in particular event. Events such as mouse...
Read More ⟶

Multiple bracket function in JavaScript

Multiple bracket function in JavaScript are tricky to understand. The bracket generally resemble a function without...
Read More ⟶