Created
December 5, 2021 14:55
-
-
Save codewithpom/6d8da0d7ce0c93a22143a9c6fb9c379f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const student = { | |
name: "Insha", | |
age: 20 | |
} | |
let key = "name" | |
console.log(student[key]) // prints out Insha | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment