1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 13:38:38 +01:00

Update type error of chinese translation

Line 344: From "行数" to  "函数"
This commit is contained in:
ryan ouyang 2015-05-28 13:07:01 +08:00
parent 5ac5b265fe
commit 7a4538374c

View File

@ -341,7 +341,7 @@ var myFunc = myObj.myFunc;
myFunc(); // = undefined
// 相应的,一个函数也可以被指定为一个对象的方法,并且可以通过`this`访问
// 这个对象的成员,即使在数被定义时并没有依附在对象上。
// 这个对象的成员,即使在数被定义时并没有依附在对象上。
var myOtherFunc = function(){
return this.myString.toUpperCase();
}