@monroygwenole
👩💻How does map.entries() work?
The Map.entries() function returns a new iterator object that contains arrays of [key, value] for each element in the Map object in the order of their insertion.
This method can be useful when you need to iterate over all elements of a Map object and perform some action with each key-value pair.
Map.entries() returns an iterator, not an array, so to work with the result as an array, other methods should be used.