Skip to content

Instantly share code, notes, and snippets.

@ph-One
Created November 8, 2014 01:26
Show Gist options
  • Save ph-One/576b4f02e1e0c59b7ea3 to your computer and use it in GitHub Desktop.
Save ph-One/576b4f02e1e0c59b7ea3 to your computer and use it in GitHub Desktop.
Split simple Object into key and value Arrays
// Separate Object into key and value arrays
var obj = {'a': 7, 'b': 8, 'c': 9};
var k = Object.keys(obj); // [a, b, c]
var v = k.map(function(k, i) { return obj[k]; }); // [7, 8, 9]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment