Understanding Object.fromEntries()
The Object.fromEntries() method transforms an iterable like Map or Array to an object. In simple words, It converts your list into an object.
let's take a look at the syntax.
Object.fromEntries(iterable);
๐ Here are some of the major points you h...
rehansattar.hashnode.dev1 min read