| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/reverse | [Back] [Original] |
Get to know MDN better
const uint8 = new Uint8Array([1, 2, 3]);
uint8.reverse();
console.log(uint8);
// : Uint8Array [3, 2, 1]
reverse()
const uint8 = new Uint8Array([1, 2, 3]);
uint8.reverse();
console.log(uint8); // Uint8Array [3, 2, 1]
| ECMAScript 2027 LanguageSpecification # sec-%typedarray%.prototype.reverse |
| Web Proxy Viewer | New URL | Original Page |