I am a Mathematics Graduate, currently learning web development.
I am available for Internships
JavaScript methods like find(), indexOf(), includes() uses some kind of searching algorithms. Here we will implement our own version of those algorithms. We will cover two searching algorithms in detail. 1. Linear search, 2. Binary search. What is a ...

First thing first, you need to have Node.js installed on your PC. Go to your terminal/cmd and type "node", then press enter. If you see an error, go to https://nodejs.org/ and install node. We will use a node module ytdl-core. Now create a folder and...

What is RegEx ? In JavaScript, regular expressions are objects, written in patterns to match character combinations in strings. For example, you can check a form field for a valid email address, that has an @ symbol at a certain position and ends wit...

The this keyword in JavaScript is a very important feature, and it behaves a little differently compared to other languages. Let's understand how this works. this "The value of this is determined by how a function is called. It can't be set by assign...
