Avoid the use of arguments.caller or arguments.callee

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

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