理解 JavaScript 的 this

初识 this 关键字 this 是个特殊的关键字,被自动定义在全部函数的做用域中。假设咱们要写一个 sayName 函数,应该是这样写的:javascript function sayName(who) { console.log(who.name); } var me = { name: 'Lwenn'; } var you = { name: 'Nana'; } sa
相关文章
相关标签/搜索