it's not a keyword, its an array-like object that hold the values passed to the function, since ES6 introduced rest parameters it's recommended to use rest ( ...arguments ) over arguments object
i recommend using arguments object when working with legacy code, or code that meant to ES5 and before
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
There is also the reserved
argumentskeyword which is an array like object.developer.mozilla.org/en-US/docs/W...
it's not a keyword, its an array-like object that hold the values passed to the function, since ES6 introduced rest parameters it's recommended to use rest ( ...arguments ) over arguments object
i recommend using arguments object when working with legacy code, or code that meant to ES5 and before