We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
##map This has been removed from version 0.0.5 because of errors with React
loops through an object and returns an array
var object = {name: 'zach', full: 'jed'} var result = object.map(value => { return value + ' is cool' }) // -> ['zach is cool', 'jed is cool']
##blank
check if an object is empty
var obj = {}; obj.blank -> true