标签:cti OLE 调用 pre 一个 err UNC const 注意
const greeting = function() { // 注意,这个 this.name 取决于谁调用了 greeting() 函数 console.log(‘Hi, ‘, this.name) } let o1 = { name: ‘gw‘, } let o2 = { name: ‘xc‘, } // 让 o1 o2 分别调用 // 调用者就是函数前面的 . 左边的对象 o1.hello() // 调用者是 o1 o2.hello() // 调用者是 o2 // 报错VM122:13 Uncaught TypeError: o1.hello is not a function at <anonymous>:13:4
一个对象不可以调用它不存在的方法
标签:cti OLE 调用 pre 一个 err UNC const 注意
原文地址:https://www.cnblogs.com/-constructor/p/11760541.html