#javascript
Read more stories on Hashnode
Articles with this tag
let and const these variables were introduced in ES6 as the old var is getting old... Now.. these let and const were block scoped variables unlike var...
Functions are called first-class citizens in Javascript which means you can pass it to another function as an argument and this function which you...
Async/Await is basically an extension to promises in Javascript. It acts as a syntactical sugar wrapped around making promises which makes it easier...