Skip to content

Instantly share code, notes, and snippets.

@alex3305
Created September 24, 2014 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alex3305/4a7376f88d4822540b3e to your computer and use it in GitHub Desktop.
Save alex3305/4a7376f88d4822540b3e to your computer and use it in GitHub Desktop.
JSON joiner
JSON.Join = function(jsons) {
var retJson = {};
for (var j1 in jsons) { for (var j2 in jsons[j1]) { retJson[j2] = jsons[j1][j2]; } }
return retJson;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment