Created
April 14, 2021 14:29
-
-
Save Sensiblemnd/0d9a23e14470ede1142be7400493efca to your computer and use it in GitHub Desktop.
This file contains hidden or 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 theIndex = { | |
dog: ()=>{console.log("dog")}, | |
cat: ()=>{console.log("cat")}, | |
rabbit: ()=>{console.log("rabbit")} | |
} | |
theIndex["rabbit"] ? theIndex["rabbit"]() : console.log("rabbnothing theret") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment