Avoid the use of arguments.caller or arguments.callee

Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: javascript-best-practices/no-caller

Language: JavaScript

Severity: Warning

Category: Error Prone

Description

arguments.caller and arguments.callee has been deprecated and forbidden in ECMAScript 5 strict mode.

Non-Compliant Code Examples

var x = arguments.callee;
var x = arguments.caller;

Compliant Code Examples

var x = arguments.length
var x = arguments
var x = arguments[0]
var x = arguments[caller]
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis