Skip to content

Instantly share code, notes, and snippets.

@jlebrech
Created August 20, 2014 11:32
Show Gist options
  • Save jlebrech/09b0c830c13f11098511 to your computer and use it in GitHub Desktop.
Save jlebrech/09b0c830c13f11098511 to your computer and use it in GitHub Desktop.
results = []
for (i in res.guests){
model = {
name: res.guests[i].name
};
Object.defineProperties(model, {
'reversename': {
get: function(){
return this.name.split('').reverse().join('');
}
}
});
results.push(model)
}
return results;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment