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
  
showing results for - "javascript enumerate"
Sara
16 Jan 2020
1const foobar = ['A', 'B', 'C'];
2
3for (const [index, element] of foobar.entries()) {
4  console.log(index, element);
5}