Skip to content

Instantly share code, notes, and snippets.

View manojsinghnegiwd's full-sized avatar
🎯
Focusing

Manoj Singh Negi manojsinghnegiwd

🎯
Focusing
View GitHub Profile
@manojsinghnegiwd
manojsinghnegiwd / getFirstElem.js
Last active February 23, 2017 08:13
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 = {