78
JavaScript Set values() method
The JavaScript Set values() method returns an object of new Set iterator. This object contains the value for each element. It maintains an insertion order.
Syntax
The values() method is represented by the following syntax:
Return
A new object of set iterator.
JavaScript Set values() method example
Here, we will understand values() method through various examples.
Example 1
Let’s see a simple example of values() method.
Output:
jQuery AngularJS Bootstrap
Example 2
Let’s see the same example using for loop.
Output:
jQuery AngularJS Bootstrap
Next TopicJavaScript Set