In javascript you can get the arguments of a function as an array-like object via the keyword arguments. I was wondering if there is a way to check if an object originated from the arguments keyword.
(What i basically wanna do is this: if(myvar.constructor.name === "Arguments") {(...)}, but the arguments object uses the default Object class, which is why this isn't possible.)
(What leads me to believe doing this is possible is the browser labelling an arguments object as "Arguments" when logged to the console)