In the chrome devtool (browser console), what does the value of double brackets [[]] mean and how do I get it?

chrome devtool (browser console), what does the value of double brackets [[]] represent and how to get it?
clipboard.png


if you get it, that's it:

set1.entries()

the content is as follows:

SetIterator {1, 2, 3, 4}
__proto__: Set Iterator
[[IteratorHasMore]]: true
[[IteratorIndex]]: 0
[[IteratorKind]]: "entries"
[[Entries]]: Array(4)
0: 1
1: 2
2: 3
3: 4
length: 4
this method returns a new Array Iterator object containing key / value pairs for each index in the array

reference link: js array summary of common operation methods-- entries


the answer here is very clear

https://codeshelper.com/q/10.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b321c9-2b63d.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b321c9-2b63d.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?