What will be the result of the following code?
const tools = { hammer: true, wrench: false };
const hasHammer = 'hammer' in tools;
What will be the result of the following code?
const tools = { hammer: true, wrench: false };
const hasHammer = 'hammer' in tools;