#web-development
Read more stories on Hashnode
Articles with this tag
Introduction Async/await is a way to write asynchronous code in JavaScript, which means it can use features such as callback functions. async/await...
Learn how to create a javascript shorthand if using the condition (ternary) operator. When you are creating conditions in your javascript code, most...
What is a Map in JavaScript? Map is a collection of key/value pairs that can use any type of data as a key or a value and remember the order of its...
var one = 1; var one_again = 1; var one_string = "1"; // note: this is string console.log(one == one_again); // true console.log(one ===...