reverse (original) (raw)

Reverse the values.

const xarray = require('extra-array');

var x = [1, 2, 3, 4]; xarray.reverse(x); // → [ 4, 3, 2, 1 ]