Skip to content

Dont-Shadow-Arguments

Documentation Index

Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt

Use this file to discover all available pages before exploring further.

Don’t shadow arguments.

function foo(name, options, arguments) {
something();
}

Never name a parameter arguments. This will take precedence over the arguments object that is given to every function scope.

From the Airbnb JavaScript Style Guide