Skip to content

Instantly share code, notes, and snippets.

@dsasse07
Created March 8, 2021 04:15
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 dsasse07/aff89b1fe5aa6aaa62a5d949af44890f to your computer and use it in GitHub Desktop.
Save dsasse07/aff89b1fe5aa6aaa62a5d949af44890f to your computer and use it in GitHub Desktop.
Calling Object keys using variables in JS
const greetings = {
english: "hello",
spanish: "hola"
}
const langChoice = "spanish"
greetings.english //=> "hello"
greetings[langChoice] //=> "hola"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment