What will be the value of result in the following code?
const fruits = { apple: 'red', banana: 'yellow' };
const result = 'apple' in fruits;
What will be the value of result in the following code?
const fruits = { apple: 'red', banana: 'yellow' };
const result = 'apple' in fruits;