mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 23:28:02 +00:00
Fix a typo
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# Accessing Arguments To A Function
|
# Accessing Arguments To A Function
|
||||||
|
|
||||||
The `arguements` object is available within any JavaScript function. It is
|
The `arguments` object is available within any JavaScript function. It is
|
||||||
an array-like object with all of the arguments to the function. Even if not
|
an array-like object with all of the arguments to the function. Even if not
|
||||||
all of the arguments are referenced in the function signature, they can
|
all of the arguments are referenced in the function signature, they can
|
||||||
still be accessed via the `arguments` object.
|
still be accessed via the `arguments` object.
|
||||||
|
|||||||
Reference in New Issue
Block a user