Amitav Mishra

Amitav Mishra @amitavmishra99

About: Front-end Web Developer who loves to write blogs on JavaScript, Angular, HTML, CSS, etc. Explore them all at jscurious.com

Location:
India
Joined:
Nov 14, 2020

Amitav Mishra
articles - 14 total

Play audio with HTMLAudioElement API in JavaScript

The HTMLAudioElement API has access to all the properties and methods of the HTML <audio>...

Learn More 1 0Jul 15 '23

The Vibration API in JavaScript

Vibrations are the best way to provide physical feedback to users for any action mostly for mobile...

Learn More 2 0Oct 19 '22

5 ways to convert a String into an Array in JavaScript

The split() method This method is used to split a string by a separator provided and...

Learn More 0 0Sep 20 '22

5 ways to check if a key exists in an object in JavaScript

Using the “in” operator The in operator returns true if the specified property is present...

Learn More 36 2Aug 7 '22

JavaScript shorthand tips and tricks

Let's checkout some shorthand tips and other tricks. Remember, some of these are not readable and...

Learn More 107 9Jul 2 '22

JavaScript getters and setters

The getters and setters are helpful to access object properties and manipulate them in an...

Learn More 10 0May 9 '22

A Brief Guide to Promises in JavaScript

A Promise in JavaScript is an object which returns a result after an asynchronous operation has...

Learn More 48 0Jul 4 '21

What Are Callback Functions In JavaScript?

A callback is a function that is passed into another function as an argument which can be invoked lat...

Learn More 14 1May 18 '21

A guide to Array.reduce() Method in JavaScript

The Array.reduce() method reduces the array to a single value. The reduce() method takes one reducer...

Learn More 38 0Jan 18 '21

5 ways to remove elements from Array in JavaScript

There are various ways to remove an element from array. We will make use of pop, shift, splice, delet...

Learn More 7 0Jan 2 '21

6 Ways to add items to an Array in JavaScript

There are various ways to add or append an item to an array. We will make use of push, unshift, splic...

Learn More 29 1Dec 10 '20

Let's explore the setTimeout and setInterval methods in JavaScript

The setTimeout() method The setTimeout() method calls a function after a specified time pr...

Learn More 7 0Dec 4 '20

What are call(), apply() and bind() in JavaScript

In JavaScript this refers to the owner object. If you want to attach some extra properties to a funct...

Learn More 5 0Nov 23 '20

Closures and Lexical Scoping in JavaScript

Variables in JavaScript have two types of scoping i.e. Local and Global scope. If any variable is dec...

Learn More 7 0Nov 14 '20