PinnedInJavaScript in Plain EnglishbyAmitav Mishra·Nov 1, 202020 JavaScript Shorthand Techniques that will save your timeThe shorthand techniques of any programming language help you to write more clean and optimized code. Shorthand techniques improve…A response icon34A response icon34
InJavaScript in Plain EnglishbyAmitav Mishra·Jul 15, 2023Play Audio with HTMLAudioElement API in JavaScriptThe HTMLAudioElement API has access to all the properties and methods of the HTML <audio> element. This API allows us to play audio without…
InJavaScript in Plain EnglishbyAmitav Mishra·Dec 1, 2022JavaScript Generator functions — a complete guideJavaScript Generators are a special type of function which lets you suspend the function execution and then come back later and resume the…
InJavaScript in Plain EnglishbyAmitav Mishra·Oct 19, 2022The URLSearchParams API in JavaScriptThe URLSearchParams API provides utility methods to parse data from the query string of an URL. The URLSearchParams() constructor creates a…
InJavaScript in Plain EnglishbyAmitav Mishra·Sep 19, 2022JavaScript Set Object — to Store Unique ValuesThe Set in JavaScript is a special type of object which lets us store unique values.
InJavaScript in Plain EnglishbyAmitav Mishra·Aug 6, 20225 Ways to Check if a Key Exists in an Object in JavaScriptFive ways for you to check if a key exists in an object in JavaScriptA response icon2A response icon2
InJavaScript in Plain EnglishbyAmitav Mishra·Jul 2, 2022A Brief Guide to the Object.defineProperty() Method in JavaScriptThe Object.defineProperty() method adds or modifies a property in an object. We can use this method to provide extra configuration details…A response icon2A response icon2
InJavaScript in Plain EnglishbyAmitav Mishra·May 9, 2022What are JavaScript Getters and Setters?Exploring the ‘get’ and ‘set’ keywords in detail.
InJavaScript in Plain EnglishbyAmitav Mishra·Dec 15, 2021The Vibration API in JavaScriptVibrations are the best way to provide physical feedback to users for any action mostly for mobile users. For example, while showing a…A response icon1A response icon1
InJavaScript in Plain EnglishbyAmitav Mishra·Jul 3, 2021JavaScript Async and Await — Your Asynchronous BuddiesThe async and await keywords help us in handling Promises more conveniently and it is more readable than regular promise handling using…