Skip to content

Instantly share code, notes, and snippets.

@sandfox
Created February 12, 2013 18:42
Show Gist options
  • Save sandfox/4772166 to your computer and use it in GitHub Desktop.
Save sandfox/4772166 to your computer and use it in GitHub Desktop.
Can't believe this works, javascript amazes me
✘ ⮀ ~/code/mobile5/ads/node-samsung-lovenote ⮀ ⭠ send-queues± ⮀ node
> a = {}
{}
> a.b = function(){console.log('aaaa')}
[Function]
>
undefined
> s = 'b';
'b'
> a[s]
[Function]
> a[s]()
aaaa
undefined
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment