JavaScript Feature Reference: entries() Method On Sets Web Browser Support Test

Last reviewed/updated: 12 Jan 2018 | Published: 12 Jan 2018 | Status: Active
Web browser support: Internet Explorer 10+, Edge 12+, Firefox 6+, Chrome 30+, Opera 17+

1. Introduction

In this web page there are two web browser JavaScript feature support tests; 1.) a feature implementation test, and 2.) a feature capability test. First, the implementation test is run. The implementation test determines if the web browser recognizes the JavaScript entries() method on sets. The implementation test is a simple test for the presence of web browser support, and a definitive test for the absence of web browser support. If the web browser does not recognize the JavaScript entries() method on sets, the testing is stopped and the implementation test reports: Fail (no support): The web browser does not recognize the JavaScript entries() method on sets. The web browser does not support the JavaScript entries() method on sets.

If the web browser recognizes the JavaScript entries() method on sets, the capability test is run. The capability test determines if the web browser's implementation of the JavaScript entries() method on sets includes support for at least one entries() method on sets capability. The capability test is a more definitive, albeit not an all inclusive, test for the presence of web browser support. If the web browser's implementation of the JavaScript entries() method on sets includes support for the tested capability, the capability test reports: Pass (at least partial/possibly full support): The web browser recognizes the JavaScript entries() method on sets, and supports at least one entries() method on sets capability. The web browser at least partially/possibly fully supports the JavaScript entries() method on sets. Positive determination of full web browser support is beyond the scope of this test. If the web browser's implementation of the JavaScript entries() method on sets does not include support for the tested capability, the capability test reports: Pass/Fail (partial support): The web browser recognizes the JavaScript entries() method on sets, but does not support at least one entries() method on sets capability. The web browser partially supports the JavaScript entries() method on sets.

The web browser support test source code is shown in Section 2.1. The web browser support test source code is run in Section 2.2, which shows the web browser support test result.

1.1. entries() Method On Sets Web Browser Support

  • Pass (at least partial/possibly full support): ED12+, FF27+, CH38+, OP25+.
  • Pass/Fail (partial support): FF24 - 26.
  • Fail (no support): IE11-, SF5.1.7-.

1.2. Abbreviations

  • IE = Internet Explorer.
  • ED = Edge Legacy 12 - 18 (EdgeHTML based) and Edge 79+ (Chromium based).
  • FF = Firefox.
  • SF = Safari.
  • CH = Chrome.
  • OP = Opera.

2. entries() Method On Sets Web Browser Support Test

2.1. Web Browser Support Test Source Code

<p id='testId'><b>Fail</b> (no support): The web browser does not recognize the JavaScript <code>entries()</code> method on sets. The web browser does not support the JavaScript <code>entries()</code> method on sets.</p><!-- Hard code Fail because web browser no support error stops JavaScript execution. -->

<script>
var testSet = new Set(); // IE11 does not support sets initialized with an iterable. Hence, use Set constructor and add() method.
testSet.add("a");
testSet.add("b");
testSet.add("c"); // testSet is {"a", "b", "c"}.
var testSetIteratorEntries = testSet.entries(); // Get reference to set built-in set iterator object called by entries() method. NOTE: entries() method can be considered a generator function. Call entries() generator function. Call returns a Generator object which inherits prototype from Object (window.Generator property does not exist) and is an iterator. Generator object has next() method property. Called by entries(), set iterator object next() method return object value property is set to two element array with both elements set to set element value.
var testSetIteratorEntriesNextValues = [];
for (var i = 0; i < testSet.size; i++){ // Identical to for (var entry of testSet.entries()){console.log(entry);}. 1.) ["a", "a"], 2.) ["b", "b"], 3.) ["c", "c"].
 testSetIteratorEntriesNextValues[i] = testSetIteratorEntries.next().value;
}
if (testSet.entries){
 var element = document.getElementById("testId");
 if ((typeof testSetIteratorEntries === "object") && testSetIteratorEntries instanceof Object && Object.prototype.isPrototypeOf(testSetIteratorEntries) && Array.isArray(testSetIteratorEntriesNextValues[0]) && (testSetIteratorEntriesNextValues[0][0] === "a") && (testSetIteratorEntriesNextValues[0][1] === "a") && (testSetIteratorEntriesNextValues[1][0] === "b") && (testSetIteratorEntriesNextValues[1][1] === "b") && (testSetIteratorEntriesNextValues[2][0] === "c") && (testSetIteratorEntriesNextValues[2][1] === "c")){
  element.innerHTML = "<b>Pass</b> (at least partial/possibly full support): The web browser recognizes the JavaScript <code>entries()</code> method on sets, and supports at least one <code>entries()</code> method on sets capability. The web browser at least partially/possibly fully supports the JavaScript <code>entries()</code> method on sets. Positive determination of full web browser support is beyond the scope of this test.";
 } else {
  element.innerHTML = "<b>Pass/Fail</b> (partial support): The web browser recognizes the JavaScript <code>entries()</code> method on sets, but does not support at least one <code>entries()</code> method on sets capability. The web browser partially supports the JavaScript <code>entries()</code> method on sets.";
 }
}
</script>

2.2. Web Browser Support Test Result

Fail (no support): The web browser does not recognize the JavaScript entries() method on sets. The web browser does not support the JavaScript entries() method on sets.


3. Resources And Additional Information