we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "javascript array value dom"
Eya
12 Oct 2018
1const array1 = ['a', 'b', 'c'];
2const iterator = array1.values();
3
4for (const value of iterator) {
5  console.log(value);
6}
7