Strings are ordered collections of characters, which are strings of length 1. The characters in a string can be accessed using bracket notation.
Arrays are ordered collections of items, which can be strings, numbers, other arrays, etc. The items/elements/entries stored in an array can be accessed using bracket notation.
Strings are immutable, whereas arrays can be changed.
Strings and arrays have properties and methods that allow us to easily perform some useful actions.
Use string methods to convert a word into pseudo-pig latin.
'LaunchCode'
becomes 'nchCodeLau'
. Use a template literal to
print the original and modified string in a descriptive phrase.The split
and join
methods convert back and forth between strings
and arrays. Use delimiters as reference points to split a string into an
array, then modify the array and convert it back to a printable string.
includes
method to check to see if the
words are separated by commas (,
), semicolons (;
) or just spaces.split
it into an array,
reverse the entries, and then join
the array into a new comma separated
string. For example, "up,to,code,fun"
becomes "fun,code,to,up"
.split
it into an
array, alphabetize the entries, and then join
the array into a new
hyphen separated string. For example, "up;to;code;fun"
becomes
"code-fun-to-up"
.split
it into an array,
reverse alphabetize the entries, and then join
the array into a new
space separated string. For example, "to code up fun"
becomes
"up to fun code"
.Arrays can store other arrays!
split
to convert the following strings into four cabinet arrays.
Alphabetize the contents of each cabinet."water bottles, meal packs, snacks, chocolate"
"space suits, jet packs, tool belts, thermal detonators"
"parrots, cats, moose, alien eggs"
"blankets, pillows, eyepatches, alarm clocks"
cargoHold
array and add the cabinet arrays to it. Print
cargoHold
to verify its structure.cargoHold
.cargoHold
AND a particular item. Use the includes
method to check
if the cabinet contains the selected item, then print "Cabinet ____
DOES/DOES NOT contain ____."