This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2023.
The with() method of TypedArray instances is the copying version of using the bracket notation to change the value of a given index. It returns a new typed array with the element at the given index replaced with the given value. This method has the same algorithm as Array.prototype.with().
arrayInstance.with(index, value)
indexZero-based index at which to change the typed array, converted to an integer.
valueAny value to be assigned to the given index.
A new typed array with the element at index replaced with value.
RangeErrorThrown if index >= array.length or index < -array.length.
See Array.prototype.with() for more details. This method is not generic and can only be called on typed array instances.
const arr = new Uint8Array([1, 2, 3, 4, 5]); console.log(arr.with(2, 6)); // Uint8Array [1, 2, 6, 4, 5] console.log(arr); // Uint8Array [1, 2, 3, 4, 5]
| Desktop | Mobile | Server | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | Bun | Deno | Node.js | |
with |
110 | 110 | 115 | 96 | 16 | 110 | 115 | 74 | 16 | 21.0 | 110 | 16 | 1.0.0 | 1.31 | 20.0.0 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/with