Get to know MDN better
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2016.
The Reflect.apply() static method calls a target function with arguments as specified.
The target function to call.
thisArgumentThe value of this provided for the call to target.
argumentsListAn array-like object specifying the arguments with which target should be called.
The result of calling the given target function with the specified this value and arguments.
Thrown if target is not a function or argumentsList is not an object.
Reflect.apply() provides the reflective semantic of a function call. That is, Reflect.apply(target, thisArgument, argumentsList) is semantically equivalent to:
The only differences are:
Reflect.apply() invokes the [[Call]] object internal method of target.
| ECMAScript® 2027 Language Specification # sec-reflect.apply |
Enable JavaScript to view this browser compatibility table.
This page was last modified on Jul 10, 2025 by MDN contributors.
Your blueprint for a better internet.
Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998–2026 by individual mozilla.org contributors. Content available under a Creative Commons license.