Define Object Properties For Dummies
Hello World,
Today I want to talk about how to define objects and their properties in Javascript. For me, it is a Back to the basics post. Let's dive in.
//@ts-check
"use strict";
const person = {
name: "chety",
};
We basically create an object...
chety.hashnode.dev2 min read