const user = {
name: "Mike",
showName: function(){
console.log(`I'm ${this.name}`);
}
}
let fn = user.showName();
console.log(fn());
I don't actually get why showName with () is saying not a function, but showName without() return "I'm" +undefined..