``` Strings``` are useful for holding data that can be represented in text form. let string1 = "A string primitive"; let string2 = 'Also a string primitive'; let string3 = `Yet another string ...
Now that we've looked at the very basics of strings, let's move up a gear and start thinking about what useful operations we can do on strings with built-in methods, such as finding the length of a ...