Skip to content

Instantly share code, notes, and snippets.

@manojsinghnegiwd
Last active February 23, 2017 08:13
Show Gist options
  • Save manojsinghnegiwd/df7b45a24796fedf36b20d4c1c599274 to your computer and use it in GitHub Desktop.
Save manojsinghnegiwd/df7b45a24796fedf36b20d4c1c599274 to your computer and use it in GitHub Desktop.
Get first element of an object
function getFirst (obj) {
var first = null;
for(var prop in obj) {
first = obj[prop];
break;
}
return first;
}
var obj = {
name: 'obj',
length: '1'
}
var fst = getFirst(obj);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment