✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What will the console output?
function change(obj) { obj.value = 10; }
const obj = {value: 5};
change(obj);
console.log(obj.value);
]]>