Object Literal in JavaScript

An object literal is simply a plain old JavaScript object that consists of key-value pairs. In the tutorial we will learn how to create objects using object literal with examples. Object Literal Syntax The object literal notation is: Object literals can store complex values, numbers, strings, functions, and nested objects….

read more

Immutability in JavaScript

Immutability is a popular concept not just in JavaScript, but most programming languages in general. The reason behind this of course is functional programming which gives software developers a brand new paradigm to utilize when coding. Let’s dive into the details of mutability and immutability. What is Mutability? A mutable…

read more