Skip to content

Instantly share code, notes, and snippets.

@theorm
Created May 28, 2015 01:34
Show Gist options
  • Save theorm/83c5c5592403e8713c85 to your computer and use it in GitHub Desktop.
Save theorm/83c5c5592403e8713c85 to your computer and use it in GitHub Desktop.

convert array A, B into C where postcode matches:

A:

[
  {
    "id": "1",
    "name": "John Doe",
    "address": {
      "city": "West End",
      "postcode": "4101"
    }
  },

  ...
]

B:

[
  {
    "type": "Hippy",
    "postcode": "4101"
  },

  ...
]

C:

[
  "John Doe - Hippy"
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment