Arrays

["hello"].indexOf("hello");
[""].push("hello");
["hello"].pop();
[""].shift();
[""].unshift("hello");
[""].insertAt(0, "hello");
["hello"].removeAt(0);
["hello", "goodbye"].reverse();

See also

index of, push, pop, shift, unshift, insert at, remove at, reverse