27/09/2023
How to create custom events in JavaScript?. Let's learn in this article.
How to create custom events in JavaScript - JS Curious
The CustomEvent() constructor creates an event with the provided event name. It also lets us pass custom data in the event object.
16/08/2023
Quick Tips:
The Vibration API in JavaScript - to create vibration in device.
Original blog: https://jscurious.com/the-vibration-api-in-javascript/
02/08/2023
The new element in HTML helps us to create popup modals with less effort. Let's learn more about this element.
The new dialog element in HTML to create popups - JS Curious
The new dialog element in HTML makes it easier to create modal and non-modal popups with less effort.
17/07/2023
Quick Tips:
Make HTTP requests using fetch() method in JavaScript.
19/06/2023
The Intl.NumberFormat object helps us in creating currency symbols and applying locale-based formatting to amounts. Let's learn more about this object.
How to add currency symbol and formatting to a number in JavaScript - JS Curious
The Intl.NumberFormat object helps in creating currency symbol and applying locale-based formatting to a number in JavaScript.
15/12/2022
Quick Tips:
The call(), apply() and bind() methods in JavaScript.
01/12/2022
The Object.is() method checks if two values are the same value and returns a boolean value indicating the same. Let's learn more about this method.
JavaScript Object.is() method to check equality of two values - JS Curious
The Object.is() method checks if two values are the same value and returns a boolean value indicating the same.
16/11/2022
Quick Tips:
3 ways to remove duplicates from an array in JavaScript.
09/11/2022
The CSS :is() and :where() functional pseudo-classes let us write compound selectors in a more simple and short way. Let's learn more about these pseudo-classes.
The CSS :is() and :where() pseudo-classes - JS Curious
The :is() and :where() pseudo-classes in CSS let us write compound selectors in a more simple and short way.
29/10/2022
Difference between Promise.all(), Promise.any(), Promise.race() & Promise.allSettled() methods in JavaScript.
19/10/2022
The Notification API allows web pages to show notifications if the user grants permission to receive notifications and the current web page is serving from an HTTPS protocol. Let's learn more about sending notifications in detail.
Send push notifications with the Notification API in JavaScript - JS Curious
The Notification API allows web pages to show notifications if the user grants permission and the current web page is serving from an HTTPS protocol.
05/10/2022
The URL API parses data from an URL and makes them accessible through utility properties. Let's explore this API in detail.
The URL API in JavaScript - JS Curious
The URL API parses data from an URL and makes them accessible through utility properties.