StylePropertyMapReadOnly: entries() method
 The StylePropertyMapReadOnly.entries() method returns an array of a given object's own enumerable property [key, value] pairs, in the same order as that provided by a for...in loop (the difference being that a for-in loop enumerates properties in the prototype chain as well). 
 
Syntax
Parameters
Return value
 An array of the given StylePropertyMapReadOnly object's own enumerable property [key, value] pairs. 
 
Examples
 Here shows an example of using StylePropertyMapReadOnly.entries() method on an elements computed styles. 
 
const buttonEl = document.querySelector("button");
const allComputedStyles = buttonEl.computedStyleMap();
const iterableStyles = allComputedStyles.entries();
console.log(iterableStyles.next().value);
 
 
Specifications
Browser compatibility
 | 
Desktop | 
Mobile | 
 | 
Chrome | 
Edge | 
Firefox | 
Internet Explorer | 
Opera | 
Safari | 
WebView Android | 
Chrome Android | 
Firefox for Android | 
Opera Android | 
Safari on IOS | 
Samsung Internet | 
entries | 
66 | 
79 | 
No | 
No | 
53 | 
16.4 | 
66 | 
66 | 
No | 
47 | 
16.4 | 
9.0 |