{ Objects in Javascript }
What's an Object?
Objects are JavaScripts most fundamental datatype.
An object in javascript is a collection of unordered key-value pairs, and those values can be other primitve types or other objects.
// ...
{
"type": "articles",
"id": "1",
"a...
git-0r.hashnode.dev2 min read