Welcome to JS Curious – Web Development Blog!
Working with JavaScript and frameworks or Libraries that are built on top of JavaScript can be tricky if you don’t have a proper understanding of core JavaScript concepts.
JS Curious offers blogs about various web development technologies like HTML, CSS, JavaScript, Angular, etc.
So, if you are a curious geek of JavaScript who has aspirations to learn Front-end Web Development with JavaScript, then you are at the right place. Here in JS Curious, we’ll make your Front-end Web Development an easier and more joyful experience.
Latest Posts
- How to create custom events in JavaScriptJavaScript events are actions or occurrences that happen on a web page. For example, clicking a button, typing in a form, or scrolling down a page, are all events. In… Read more: How to create custom events in JavaScript
- The new dialog element in HTML to create popupsA modal dialog is content that appears on top of all the page content. It makes the user focus only on specific content and restricts interaction with the rest of… Read more: The new dialog element in HTML to create popups
- How to add currency symbol and formatting to a number in JavaScriptCurrency formatting on the client side can be a little tricky. Imagine a scenario where we are getting the currency code and amount from API, and we need to find… Read more: How to add currency symbol and formatting to a number in JavaScript
- JavaScript Object.is() method to check equality of two valuesThe Object.is() method checks if two values are the same value and returns a boolean value indicating the same. Syntax is: This method doesn’t perform type conversion while comparing the… Read more: JavaScript Object.is() method to check equality of two values
- The CSS :is() and :where() pseudo-classesThe :is() functional pseudo-class lets us write compound selectors in a more simple and short way. It takes a list of selectors as arguments and matches elements by creating different… Read more: The CSS :is() and :where() pseudo-classes
- Send push notifications with the Notification API in JavaScriptThe Notification API allows web pages to show notifications. This API can show notifications only if the user grants permission to receive notifications and the current web page is serving… Read more: Send push notifications with the Notification API in JavaScript