Skip to content

Instantly share code, notes, and snippets.

@tarrsalah
Created January 13, 2018 14:41
Show Gist options
  • Save tarrsalah/fccd5ef663b9a051ac99876c3a0afb1f to your computer and use it in GitHub Desktop.
Save tarrsalah/fccd5ef663b9a051ac99876c3a0afb1f to your computer and use it in GitHub Desktop.
Strange syntax to create an object in javascript
const stringArray = ["STRING_ARRAY"];
const strangeObject = {
[stringArray]() {
console.log(stringArray);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment