This article entails a listing of all JavaScript properties documented on MDN sorted alphabetically.
Found 98 pages with the tag "Property":
A
-
arguments: Thefunction.argumentsproperty refers to an an array-like object corresponding to the arguments passed to a function. Use the simple variableargumentsinstead. -
arity: Thearityproperty used to return the number of arguments expected by the function, however, it no longer exists and has been replaced by theFunction.prototype.lengthproperty.
B
-
BYTES_PER_ELEMENT: TheTypedArray.BYTES_PER_ELEMENTproperty represents the size in bytes of each element in an typed array. -
buffer: Thebufferaccessor property represents theArrayBufferreferenced by theDataViewat construction time. -
buffer: Thebufferaccessor property represents theArrayBufferreferenced by a TypedArray at construction time. -
byteLength: ThebyteLengthaccessor property represents the length of anArrayBufferin bytes. -
byteLength: ThebyteLengthaccessor property represents the length (in bytes) of this view from the start of itsArrayBuffer. -
byteLength: ThebyteLengthaccessor property represents the length (in bytes) of a typed array from the start of itsArrayBuffer. -
byteOffset: ThebyteOffsetaccessor property represents the offset (in bytes) of this view from the start of itsArrayBuffer. -
byteOffset: ThebyteOffsetaccessor property represents the offset (in bytes) of a typed array from the start of itsArrayBuffer.
C
-
callee: Thearguments.calleeproperty contains the currently executing function. -
caller: The obsoletearguments.callerproperty used to provide the function that invoked the currently executing function. This property has been removed and no longer works. -
caller: Thefunction.callerproperty returns the function that invoked the specified function. -
columnNumber: ThecolumnNumberproperty contains the column number in the line of the file that raised this error. -
compare: TheIntl.Collator.prototype.compareproperty returns a getter function that compares two strings according to the sort order of thisCollatorobject. -
constructor: Returns a reference to theObjectfunction that created the instance's prototype. Note that the value of this property is a reference to the function itself, not a string containing the function's name. The value is only read-only for primitive values such as1,trueand"test".
D
-
displayName: Thefunction.displayNameproperty returns the display name of the function.
E
-
E: TheMath.Eproperty represents the base of natural logarithms, e, approximately 2.718. -
EPSILON: TheNumber.EPSILONproperty represents the difference between one and the smallest value greater than one that can be represented as aNumber.
F
-
fileName: ThefileNameproperty contains the path to the file that raised this error. -
flags: Theflagsproperty returns a string consisting of the flags of the current regular expression object. -
format: TheIntl.DateTimeFormat.prototype.formatproperty returns a getter function that formats a date according to the locale and formatting options of thisDateTimeFormatobject. -
format: TheIntl.NumberFormat.prototype.formatproperty returns a getter function that formats a number according to the locale and formatting options of thisNumberFormatobject.
G
-
global: Theglobalproperty indicates whether or not the "g" flag is used with the regular expression.globalis a read-only property of an individual regular expression instance.
H
I
-
ignoreCase: TheignoreCaseproperty indicates whether or not the "i" flag is used with the regular expression.ignoreCaseis a read-only property of an individual regular expression instance. -
input ($_): The non-standardinputproperty is a static property of regular expressions that contains the string against which a regular expression is matched.RegExp.$_is an alias for this property. -
iterator: TheSymbol.iteratorwell-known symbol specifies the default iterator for an object. Used byfor...of.
J
K
L
-
LN10: TheMath.LN10property represents the natural logarithm of 10, approximately 2.302: -
LN2: TheMath.LN2property represents the natural logarithm of 2, approximately 0.693: -
LOG10E: TheMath.LOG10Eproperty represents the base 10 logarithm of e, approximately 0.434: -
LOG2E: TheMath.LOG2Eproperty represents the base 2 logarithm of e, approximately 1.442: -
lastIndex: ThelastIndexis a read/write integer property of regular expressions that specifies the index at which to start the next match. -
lastMatch ($&): The non-standard lastMatch property is a static and read-only property of regular expressions that contains the last matched characters.RegExp.$&is an alias for this property. -
lastParen ($+): The non-standard lastParen property is a static and read-only property of regular expressions that contains the last parenthesized substring match, if any.RegExp.$+is an alias for this property. -
leftContext ($`): The non-standard leftContext property is a static and read-only property of regular expressions that contains the substring preceding the most recent match.RegExp.$`is an alias for this property. -
length: Thearguments.lengthproperty contains the number of arguments passed to the function. -
length: Thelengthproperty represents the length of a string. -
length: Thelengthproperty specifies the number of arguments expected by the function. -
length: Thelengthproperty represents an unsigned, 32-bit integer that specifies the number of elements in an array. -
length: Thelengthaccessor property represents the length (in elements) of a typed array. -
lineNumber: ThelineNumberproperty contains the line number in the file that raised this error.
M
-
MAX_SAFE_INTEGER: TheNumber.MAX_SAFE_INTEGERconstant represents the maximum safe integer in JavaScript (253 - 1). -
MAX_VALUE: TheNumber.MAX_VALUEproperty represents the maximum numeric value representable in JavaScript. -
MIN_SAFE_INTEGER: TheNumber.MIN_SAFE_INTEGERconstant represents the minimum safe integer in JavaScript (-(253 - 1)). -
MIN_VALUE: TheNumber.MIN_VALUEproperty represents the smallest positive numeric value representable in JavaScript. -
match: TheSymbol.matchwell-known symbol specifies the matching of a regular expression against a string. This function is called by theString.prototype.match()method. -
message: Themessageproperty is a human-readable description of the error. -
multiline: Themultilineproperty indicates whether or not the "m" flag is used with the regular expression.multilineis a read-only property of an individual regular expression instance.
N
-
NEGATIVE_INFINITY: TheNumber.NEGATIVE_INFINITYproperty represents the negative Infinity value. -
NaN: TheNumber.NaNproperty represents Not-A-Number. Equivalent ofNaN. -
name: Thenameproperty represents a name for the type of error. The initial value is "Error". -
name: Thefunction.nameproperty returns the name of the function. -
name: TheTypedArray.nameproperty represents a string value of the typed array constructor name.
O
P
-
PI: TheMath.PIproperty represents the ratio of the circumference of a circle to its diameter, approximately 3.14159: -
POSITIVE_INFINITY: TheNumber.POSITIVE_INFINITYproperty represents the positive Infinity value. -
prototype: TheBoolean.prototypeproperty represents the prototype for theBooleanconstructor. -
prototype: TheDataView.prototypeproperty represents the prototype for theDataViewobject. -
prototype: TheDate.prototypeproperty represents the prototype for theDateconstructor. -
prototype: TheError.prototypeproperty represents the prototype for theErrorconstructor. -
prototype: TheEvalError.prototypeproperty represents the prototype of theEvalErrorconstructor. -
prototype: TheFunction.prototypeproperty represents theFunctionprototype object. -
prototype: TheGeneratorFunction.prototypeproperty represents theGeneratorFunctionprototype object. -
prototype: TheInternalError.prototypeproperty represents the prototype of theInternalErrorconstructor. -
prototype: TheIntl.Collator.prototypeproperty represents the prototype object for theIntl.Collatorconstructor. -
prototype: TheIntl.DateTimeFormat.prototypeproperty represents the prototype object for theIntl.DateTimeFormatconstructor. -
prototype: TheIntl.NumberFormat.prototypeproperty represents the prototype object for theIntl.NumberFormatconstructor. -
prototype: TheMap.prototypeproperty represents the prototype for theMapconstructor. -
prototype: TheArray.prototypeproperty represents the prototype for theArrayconstructor. -
prototype: TheArrayBuffer.prototypeproperty represents the prototype for theArrayBufferobject. -
prototype: TheNumber.prototypeproperty represents the prototype for theNumberconstructor. -
prototype: TheObject.prototypeproperty represents theObjectprototype object. -
prototype: ThePromise.prototypeproperty represents the prototype for thePromiseconstructor. -
prototype: TheRangeError.prototypeproperty represents the prototype theRangeErrorconstructor. -
prototype: TheReferenceError.prototypeproperty represents the prototype for theReferenceErrorconstructor. -
prototype: TheRegExp.prototypeproperty represents the prototype object for theRegExpconstructor. -
prototype: TheSet.prototypeproperty represents the prototype for theSetconstructor. -
prototype: TheString.prototypeproperty represents theStringprototype object. -
prototype: TheSymbol.prototypeproperty represents the prototype for theSymbolconstructor. -
prototype: TheSyntaxError.prototypeproperty represents the prototype for theSyntaxErrorconstructor. -
prototype: TheTypeError.prototypeproperty represents the prototype for theTypeErrorconstructor. -
prototype: TheTypedArray.prototypeproperty represents the prototype forTypedArrayconstructors. -
prototype: TheURIError.prototypeproperty represents the prototype for theURIErrorconstructor. -
prototype: TheWeakMap.prototypeproperty represents the prototype for theWeakMapconstructor. -
prototype: TheWeakSet.prototypeproperty represents the prototype for theWeakSetconstructor.
Q
R
-
rightContext ($'): The non-standard rightContext property is a static and read-only property of regular expressions that contains the substring following the most recent match.RegExp.$'is an alias for this property.
S
-
SQRT1_2: TheMath.SQRT1_2property represents the square root of 1/2 which is approximately 0.707: -
SQRT2: TheMath.SQRT2property represents the square root of 2, approximately 1.414: -
size: Thesizeaccessor property returns the number of elements in aMapobject. -
size: Thesizeaccessor property returns the number of elements in aSetobject. -
source: Thesourceproperty returns aStringcontaining the source text of the regexp object, and it doesn't contain the two forward slashes on both sides and any flags. -
stack: The non-standardstackproperty ofErrorobjects offer a trace of which functions were called, in what order, from which line and file, and with what arguments. The stack string proceeds from the most recent calls to earlier ones, leading back to the original global scope call. -
sticky: Thestickyproperty reflects whether or not the search is sticky (searches in strings only from the index indicated by thelastIndexproperty of this regular expression).stickyis a read-only property of an individual regular expression object.
T
U
-
unicode: Theunicodeproperty indicates whether or not the "u" flag is used with the regular expression.unicodeis a read-only property of an individual regular expression instance.
V
W
X
Y
Z
_
-
__count__: The__count__property used to store the count of enumerable properties on the object, but it has been removed. -
__noSuchMethod__: The__noSuchMethod__property references a function to be executed when a non-existent method is called on an object. -
__parent__: The__parent__property used to point to an object's context, but it has been removed. -
__proto__: The__proto__property ofObject.prototypeis an accessor property (a getter function and a setter function) that exposes the internal[[Prototype]](either an object ornull) of the object through which it is accessed.
$
-
$1-$9: The non-standard $1, $2, $3, $4, $5, $6, $7, $8, $9 properties are static and read-only properties of regular expressions that contain parenthesized substring matches.
See also
Document Tags and Contributors
Tags:
Contributors to this page: Sheppy, sidgan, fscholz, SphinxKnight, Sevenspade, Prodoc, Ruakh, NickolayBot, Dria, OsamaBinLogin
Last updated by:
sidgan,