Node.js examples for Object:Property
Get first element of an object
/**//from ww w .j a v a2 s . c om * Get first element of an object * * Parameters: * (object) obj * * Returns: * (object) first element of the object */ function first(obj){ for(var key in obj){ return obj[key]; } }