Create, read, and transform arrays and strings.
// A piece of text "";
// Create an array (list) of values new Array(0, 0);
// Get the number of items in an array [].length;
// Reverse the order of an array [].reverse();
// Join the items of an array into text [].join(", ");
// Check whether an array contains a value [].includes(null);
// Get a section of an array between two indexes [].slice(0, 2);
// Get the item at a given index of an array [][0];
// Get the position of a value within an array [].indexOf(null);
// Run code for each item in an array for (const item of []) { }