Skip to content

Instantly share code, notes, and snippets.

@ldco2016
Created June 11, 2018 21:06
Show Gist options
  • Save ldco2016/ac854fc81185b0f6e2bc2cf3c2d2a1bf to your computer and use it in GitHub Desktop.
Save ldco2016/ac854fc81185b0f6e2bc2cf3c2d2a1bf to your computer and use it in GitHub Desktop.
Plucking Values
var images = [
{ height: '34px', width: '39px' },
{ height: '54px', width: '19px' },
{ height: '83px', width: '75px' },
];
var heights;
@ldco2016
Copy link
Author

var trips = [
  { distance: 34, time: 10 },
  { distance: 90, time: 50 },
  { distance: 59, time: 25 }
];

var speeds;

@ldco2016
Copy link
Author

function pluck(array, property) {
    
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment