Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
var characters = [
    { 'name': 'barney', 'age': 36 },
    { 'name': 'fred', 'age': 40 }
];
function pluck(array, prop) {
    var newArray = [];
    array.forEach(function(element) {
        newArray.push(element.prop);
        console.log(element.prop);
        console.log(element);
        console.log(prop);
    });
    
    console.log(newArray);
}
pluck(characters, 'name'); // ['barney', 'fred']
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
fxslokerpro
0viewers