Results 141 - 160 of 1,719

Object.prototype.watch()

The watch() method watches for a property to be assigned a value and runs a function when that occurs.
JavaScript Method Object Prototype

Promise.all()

The Promise.all(iterable) method returns a promise that resolves when all of the promises in the iterable argument have resolved, or rejects with the reason of the first passed promise that rejects.
ECMAScript6 JavaScript Method Promise

Promise.race()

The Promise.race(iterable) method returns a promise that resolves or rejects as soon as one of the promises in the iterable resolves or rejects, with the value or reason from that promise.
ECMAScript6 JavaScript Method Promise

Promise.reject()

The Promise.reject(reason) method returns a Promise object that is rejected with the given reason.
ECMAScript6 JavaScript Method Promise

Promise.resolve()

The Promise.resolve(value) method returns a Promise object that is resolved with the given value. If the value is a thenable (i.e. has a "then" method), the returned promise will "follow" that thenable, adopting its eventual state; otherwise the returned promise will be fulfilled with the value.
ECMAScript6 JavaScript Method Promise

handler.apply()

The handler.apply() method is a trap for a function call.
ECMAScript6 JavaScript Method Proxy

handler.construct()

The handler.construct() method is a trap for the new operator.
ECMAScript6 JavaScript Method Proxy

handler.defineProperty()

The handler.defineProperty() method is a trap for Object.defineProperty().
ECMAScript6 JavaScript Method Proxy

handler.deleteProperty()

The handler.deleteProperty() method is a trap for the delete operator.
ECMAScript6 JavaScript Method Proxy

handler.get()

The handler.get() method is a trap for getting a property value.
ECMAScript6 JavaScript Method Proxy

handler.getOwnPropertyDescriptor()

The handler.getOwnPropertyDescriptor() method is a trap for Object.getOwnPropertyDescriptor().
ECMAScript6 JavaScript Method Proxy

handler.getPrototypeOf()

The handler.getPrototypeOf() method is a trap for the [[GetPrototypeOf]] internal method.
ECMAScript6 JavaScript Method Proxy

handler.has()

The handler.has() method is a trap for the in operator.
ECMAScript6 JavaScript Method Proxy

handler.isExtensible()

The handler.isExtensible() method is a trap for Object.isExtensible().
ECMAScript6 JavaScript Method Proxy

handler.preventExtensions()

The handler.preventExtensions() method is a trap for Object.preventExtensions().
ECMAScript6 JavaScript Method Proxy

handler.set()

The handler.set() method is a trap for setting a property value.
ECMAScript6 JavaScript Method Proxy

Proxy.revocable()

The Proxy.revocable() method is used to create a revocable Proxy object.
ECMAScript6 JavaScript Method Proxy

Reflect.apply()

The static Reflect.apply() method calls a target function with arguments as specified.
ECMAScript6 JavaScript Method Reflect

Reflect.construct()

The static Reflect.construct() method acts like the new operator as a function. It is equivalent to calling new target(...args).
ECMAScript6 JavaScript Method Reflect