JavaScript Objects Iterable Methods
In JavaScript, provided a data structure can be instantiated (with the new keyword), it's an object - Map Set Array etc.
const map = new Map();
const set = new Set('Bello');
const array = new Array(3, 5, 'Bello');
const checkMap = typeof map;
const ...
blog.techstackspace.com4 min read
eziogrieco
development
Good job Bello, do you think you will continue with JS posts?