1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 23:28:02 +00:00

Fix a typo

This commit is contained in:
jbranchaud
2016-03-22 22:32:54 -05:00
parent 69c23c73fd
commit 0d0a92011f

View File

@@ -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.