Browse Source

min apply

Ivan Grinkin 8 years ago
parent
commit
dafa35b214
1 changed files with 1 additions and 1 deletions
  1. 1 1
      07ObjectsFunctionalStyle.md

+ 1 - 1
07ObjectsFunctionalStyle.md

@@ -297,7 +297,7 @@ someArray.min()
 // или же сделаем свой min для всех массивов 
 
 Array.prototype.min = function(){ 
-    return Math.min.call(Math, this) 
+    return Math.min.apply(Math, this) 
 }
 
 [100, 500,  -100500].min()