© 2023 Hashnode
#javascript-library
Prisma is loved by many javascript developers thanks to its great developer experience. It provides an abstract and intuitive syntax to query your data from your backend and works out of the box with …
What is React? Advantages of using React The virtual Dom React Components JSX How to get started with React In front-end development, JavaScript is the programming language for making websites …
Today, we are going to add a language translation feature to the website. I saw that on Google even on YouTube no video clears all questions and people are struggling. Currently, I am facing an issue …
Introduction: Hey there, fellow tech enthusiasts and curious minds! Today, let's embark on an exciting journey into the world of programming languages and uncover the mystery behind why we don't write…
In ES5, we used to declare a variable using var. ES6 provides a new way of declaring a variable by using the let keyword. But there are some differences between let and var. Let’s understand some conc…
This topic is one of the famous interview questions so therefore we are here to cover this in our blog. Without wasting any time let's move on to the main part. How undefined Work? Undefined is returned by the javascript compiler when a par…
IIFE’s full form goes like Immediately Invoked Function Expression & it means the function is invoked at the same place where it is defined. Syntax of IIFE in Javascript (function (){ //performing operations })() From the above syntax,…
JavaScript is a popular programming language used for creating websites and web applications. But have you ever wondered whether it is an interpreter or a compiler language? In this article, we will break down the confusion and explain how …
Async await has done a lot to improve the readability of code when compared with callbacks style. But sometimes it is not a good construct, especially if you want to use it in a functional style!!! One problem I see, is the spread of async …
When working with JavaScript, understanding the various ways of declaring variables is crucial for effective programming. In this article, we will explore the different methods of declaring variables …