const key = 'apple'
const obj = {
apple: 'red',
banana: 'yellow'
}
const appleColor = obj[key]
console.log(appleColor)//red
const key = 'apple'
const obj = {
apple: 'red',
banana: 'yellow'
}
const appleColor = obj[key]
console.log(appleColor)//red
コメント