Results 61 - 80 of 1,719

Array.prototype.sort()

The sort() method sorts the elements of an array in place and returns the array. The sort is not necessarily stable. The default sort order is according to string Unicode code points.
Array JavaScript Method Prototype

Array.prototype.toSource()

The toSource() method returns a string representing the source code of the array.
Array JavaScript Method Prototype

Array.prototype.toString()

The toString() method returns a string representing the specified array and its elements.
Array JavaScript Method Prototype

Array.unobserve()

The Array.unobserve() method was used to remove observers set by Array.observe(), but has been deprecated and removed from Browsers. You can use the more general Proxy object instead.
Array JavaScript Method Obsolete

Array.prototype.unshift()

The unshift() method adds one or more elements to the beginning of an array and returns the new length of the array.
Array JavaScript Method Prototype

ArrayBuffer.isView()

The ArrayBuffer.isView() method returns true if arg is one of the ArrayBuffer views, such as typed array objects or a DataView; false otherwise.
ArrayBuffer JavaScript Method TypedArrays

ArrayBuffer.prototype.slice()

The slice() method returns a new ArrayBuffer whose contents are a copy of this ArrayBuffer's bytes from begin, inclusive, up to end, exclusive.
ArrayBuffer JavaScript Method Prototype

Boolean.prototype.toSource()

The toSource() method returns a string representing the source code of the object.
Boolean JavaScript Method Prototype

Boolean.prototype.toString()

The toString() method returns a string representing the specified Boolean object.
Boolean JavaScript Method Prototype

Boolean.prototype.valueOf()

The valueOf() method returns the primitive value of a Boolean object.
Boolean JavaScript Method Prototype

Intl.Collator.supportedLocalesOf()

The Intl.Collator.supportedLocalesOf() method returns an array containing those of the provided locales that are supported in collation without having to fall back to the runtime's default locale.
Collator Internationalization JavaScript Method

Date.parse()

The Date.parse() method parses a string representation of a date, and returns the number of milliseconds since January 1, 1970, 00:00:00 UTC or NaN if the string is unrecognised or, in some cases, contains illegal date values (e.g. 2015-02-31).
Date JavaScript Method Reference

Date.UTC()

The Date.UTC() method accepts the same parameters as the longest form of the constructor, and returns the number of milliseconds in a Date object since January 1, 1970, 00:00:00, universal time.
Date JavaScript Method Reference

Error.prototype.toSource()

The toSource() method returns code that could eval to the same error.
Error JavaScript Method Prototype

Error.prototype.toString()

The toString() method returns a string representing the specified Error object.
Error JavaScript Method Prototype

Function.prototype.apply()

The apply() method calls a function with a given this value and arguments provided as an array (or an array-like object).
Function JavaScript Method

Function.prototype.call()

The call() method calls a function with a given this value and arguments provided individually.
Function JavaScript Method

Function.prototype.isGenerator()

The isGenerator() method determines whether or not a function is a generator.
Function JavaScript Method

Function.prototype.toSource()

The toSource() method returns a string representing the source code of the object.
Function JavaScript Method

Function.prototype.toString()

The toString() method returns a string representing the source code of the function.
Function JavaScript Method Prototype