reverse
Reverses the order of the observe array.
list.reverse()
reverse
reverses the order of the array in place.
import { observe } from "can/everything";
const names = new observe.Array(['Alice', 'Bob', 'Chris']);
names.reverse();
console.log(names); //-> ['Chris', 'Bob', 'Alice']
Events
reverse
causes length events to be fired.