diff --git a/files/en-us/web/javascript/reference/global_objects/typedarray/slice/index.html b/files/en-us/web/javascript/reference/global_objects/typedarray/slice/index.html index b25462397f86bfc..e5f5cfb073cee04 100644 --- a/files/en-us/web/javascript/reference/global_objects/typedarray/slice/index.html +++ b/files/en-us/web/javascript/reference/global_objects/typedarray/slice/index.html @@ -64,7 +64,7 @@

Description

The slice method does not alter the original typed array, but instead returns a copy of a portion of the original typed array. As typed arrays only store primitive values, the copy the slice method returns is always a shallow copy.

-

If a new element is added to either typed array, the other typed array is not affected. +

If an element is changed in either typed array, the other typed array is not affected.

Examples

@@ -96,7 +96,7 @@

Polyfill

If you need to support truly obsolete JavaScript engines that don't support {{jsxref("Object.defineProperty")}}, it's best not to polyfill - Array.prototype methods at all, as you can't make them non-enumerable.

+ TypedArray.prototype methods at all, as you can't make them non-enumerable.

Specifications