// < ES6: var foo = ['a', 'ab', 'abc']; var bar = foo.map(function(d) { return d.length; }); console.log(bar); // 1,2,3 Run code snippetHide results