codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

JavaScript ES6 — Learn Array.keys, Array.values, and Array.entries

Brandon Morelli
codeburst
Published in
3 min readAug 17, 2017

Array.keys()

Keys, Values, Entries

Array?

let cars = ['ford', 'chevy', 'mazda'];let ages = [24, 53, 28];

Iterator?

Array.keys

let arr = ['a', 'b', 'c'];
let iterator = arr.keys();
iterator.next(); // {value: 0, done: false}
iterator.next(); // {value: 1, done: false}
iterator.next(); // {value: 2, done: false}
iterator.next(); // {value: undefined, done: true}
Support in browsers — via mdn

Array.values

let arr = ['a', 'b', 'c'];
let iterator = arr.values();
iterator.next().value(); // a
iterator.next().value(); // b
iterator.next().value(); // c
iterator.next().value(); // undefined
Support in browsers — via mdn

Array.entries

let arr = ['a', 'b', 'c'];
let iterator = arr.entries();
iterator.next().value(); // [0, 'a']
iterator.next().value(); // [1, 'b']
iterator.next().value(); // [2, 'c']
iterator.next().value(); // undefined
Support in browsers — via mdn

Want more advanced JavaScript?

If this post was helpful, please click the clap 👏button below a few times to show your support! ⬇⬇

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Brandon Morelli

Creator of @codeburstio — Frequently posting web development tutorials & articles. Follow me on Twitter too: @BrandonMorelli

Responses (2)

Write a response