What value is obtained when executing object.add(4, 5) in the following code?
const object = {
add: function(a, b) {
return a + b;
}
};
What value is obtained when executing object.add(4, 5) in the following code?
const object = {
add: function(a, b) {
return a + b;
}
};