Skip to content

Instantly share code, notes, and snippets.

@bleroy
Created December 24, 2018 22:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bleroy/7b77305aa7b143ea27d03179f3c4ff80 to your computer and use it in GitHub Desktop.
Save bleroy/7b77305aa7b143ea27d03179f3c4ff80 to your computer and use it in GitHub Desktop.
'use strict';
const a = {foo: 'bar'};
let b, c;
a[b] = 42;
console.log(a[c]); // outputs: 42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment