Skip to content

Commit 266ca70

Browse files
Update 1-js/06-advanced-functions/09-call-apply-decorators/article.md
Co-authored-by: joaquinelio <[email protected]>
1 parent 5de203e commit 266ca70

File tree

1 file changed

+1
-1
lines changed
  • 1-js/06-advanced-functions/09-call-apply-decorators

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/09-call-apply-decorators/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ Entonces estas dos llamadas son casi equivalentes:
301301

302302
```js
303303
func.call(context, ...args); // pasar un array como lista con sintaxis extendida
304-
func.apply(context, args); // es lo mismo que usar apply
304+
func.apply(context, args); // es lo mismo que usar call
305305
```
306306

307307
Solo hay una sutil diferencia:

0 commit comments

Comments
 (0)