Skip to content

Instantly share code, notes, and snippets.

@igoventura
Last active July 10, 2019 15:12
Show Gist options
  • Save igoventura/cda335818fad9dff45ea22be66d3ad97 to your computer and use it in GitHub Desktop.
Save igoventura/cda335818fad9dff45ea22be66d3ad97 to your computer and use it in GitHub Desktop.
Object Array to Uppercase
Object.prototype.keys = function() { return Object.keys(this) }
var a = [{nome: 'igo', sobrenome: 'ventura'}, {nome: 'igo', sobrenome: 'ventura'}, {nome: 'igo', sobrenome: 'ventura'}]
a.map(i => { i.keys().forEach(k => i[k] = i[k].toUpperCase()); return i })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment