I am trying to implement some plugins and found references to arguments_ but, it is coming up as undefined in the console. I cannot find any references online to this variable but, it seems to be something found in other JS code.
Any help would be appreciated.
Every function has an array-esque
argumentsobject available in it’s scope. It contains information such as what called the function, what arguments they passed, etc.What you see with
arguments_is most likely a third-party library that has stored someargumentsvariable from a specific function to be used later by their other functions. Without knowing what libraries you are including, though, it is impossible to tell.