Object
2 articles
Javascript
Dot vs Bracket Notation in JavaScript Objects: A Complete Guide
In JavaScript, you can use dot notation (.) or bracket notation ([]) to access object properties. They do the same thing… until they don’t. Then …
Javascript
Deep dive into Object.freeze() in Javascript
According to MDN, the Object.freeze() static method freezes an object. Freezing an object prevents extensions and makes existing properties …