All Posts Tagged with JAVASCRIPT

Make Your JavaScript Cleaner with Destructuring Assignment

Which one of the following code snippets would you prefer to write? This? // ES6 function displayInfo ({ name = 'No name', email = 'No email', occupation = 'No occupation' }) { console.log(name); console.log(email);...
Read more...

Understanding Closures in JavaScript

Closures are one of those things we have to understand at some point in our JavaScript learning journey. Understanding them will help us become better JavaScript developers and write better code. But unfortunately, for some p...
Read more...