Skip to content

Instantly share code, notes, and snippets.

@binki
Created December 17, 2016 15:14
Show Gist options
  • Save binki/e42f03eaf59906736ff32f5494e83ad3 to your computer and use it in GitHub Desktop.
Save binki/e42f03eaf59906736ff32f5494e83ad3 to your computer and use it in GitHub Desktop.
null trick with maps?
> var x = {}
undefined
> x['null'] = 2
2
> x['undefined'] = 4
4
> y = {parentId: null,}
{ parentId: null }
> x[y.parentId]
2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment