--- title: Deprecated and obsolete features slug: Web/JavaScript/Reference/Deprecated_and_obsolete_features tags: - Deprecated - JavaScript - Obsolete translation_of: Web/JavaScript/Reference/Deprecated_and_obsolete_features ---
{{JsSidebar("More")}}

본 페이지는 자바스크립트의 제외 예정인(즉, 아직 사용할 수 있지만 제거 계획이 있는) 기능과 제외된(즉, 더 이상 사용할 수 없는) 기능을 나열합니다.

제외 예정 기능

아래 기능은 아직 사용할 수 있지만, 언젠가 제거될 예정이므로 주의를 기울여야 합니다. 작성한 코드가 항목 중 하나를 포함하고 있다면 제거해야 합니다.

RegExp 속성

아래 속성은 제외 예정입니다. 이는 {{jsxref("String.replace")}} 사용에 영향을 주지 않습니다.

Property Description
{{jsxref("RegExp.n", "$1-$9")}}

Parenthesized substring matches, if any.
Warning: Using these properties can result in problems, since browser extensions can modify them. Avoid them!

{{jsxref("RegExp.input", "$_")}} See input.
{{jsxref("RegExp.multiline", "$*")}} See multiline.
{{jsxref("RegExp.lastMatch", "$&")}} See lastMatch.
{{jsxref("RegExp.lastParen", "$+")}} See lastParen.
{{jsxref("RegExp.leftContext", "$`")}} See leftContext.
{{jsxref("RegExp.rightContext", "$'")}} See rightContext.
{{jsxref("RegExp.input", "input")}} The string against which a regular expression is matched.
{{jsxref("RegExp.lastMatch", "lastMatch")}} The last matched characters.
{{jsxref("RegExp.lastParen", "lastParen")}} The last parenthesized substring match, if any.
{{jsxref("RegExp.leftContext", "leftContext")}} The substring preceding the most recent match.
{{jsxref("RegExp.rightContext", "rightContext")}} The substring following the most recent match.

The following are now properties of RegExp instances, no longer of the RegExp object:

Property Description
{{jsxref("RegExp.global", "global")}} Whether or not to test the regular expression against all possible matches in a string, or only against the first.
{{jsxref("RegExp.ignoreCase", "ignoreCase")}} Whether or not to ignore case while attempting a match in a string.
{{jsxref("RegExp.lastIndex", "lastIndex")}} The index at which to start the next match.
{{jsxref("RegExp.multiline", "multiline")}} Whether or not to search in strings across multiple lines.
{{jsxref("RegExp.source", "source")}} 패턴의 텍스트.

RegExp 메서드

Function 속성

Legacy generator

Iterator

Object methods

Date methods

Functions

Proxy

Escape sequences

String methods

Obsolete features

These obsolete features have been entirely removed from JavaScript and can no longer be used as of the indicated version of JavaScript.

Object

Property Description
{{jsxref("Global_Objects/Object/count", "__count__")}} Returns the number of enumerable properties directly on a user-defined object.
{{jsxref("Global_Objects/Object/Parent", "__parent__")}} Points to an object's context.
{{jsxref("Global_Objects/Object/eval", "Object.prototype.eval()")}} Evaluates a string of JavaScript code in the context of the specified object.
{{jsxref("Object.observe()")}} Asynchronously observing the changes to an object.
{{jsxref("Object.unobserve()")}} Remove observers.
{{jsxref("Object.getNotifier()")}} Creates an object that allows to synthetically trigger a change.

Function

Property Description
{{jsxref("Global_Objects/Function/arity", "arity")}} Number of formal arguments.

Array

Property Description
{{jsxref("Array.observe()")}} Asynchronously observing changes to Arrays.
{{jsxref("Array.unobserve()")}} Remove observers.

Number

ParallelArray

Statements

E4X

See E4X for more information.

Sharp variables

See Sharp variables in JavaScript for more information.