Skip to content

Instantly share code, notes, and snippets.

@lrdiv
Last active November 21, 2017 18:00
Show Gist options
  • Save lrdiv/658145eeb02706ccd65292848f830721 to your computer and use it in GitHub Desktop.
Save lrdiv/658145eeb02706ccd65292848f830721 to your computer and use it in GitHub Desktop.
// return [{ "name": '', "id": '' }].concat(paymentOptions.map(function(p){ return {"name": p.get('name'), "id": p.get("id")} }));
return paymentOptions.reduce((a, b) => a.push(b.getProperties('id', 'name')), [{"name": "", "id": ""]);
// OR
return paymentOptions.reduce(function(a, b) {
return a.push(b.getProperties('id', 'name'));
}, [{"name": "", "id": ""}])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment