We've seen ways to convert numbers and strings with methods, but there's loads more that we can do!

Let's look at a method that let's us know how long a string is!

Wow, what a long word! And what an intuitive method! We're asking for the string's length and the length method has that exact name.

Psst: keep in mind that length counts characters. If there's a space in a string, it'll count that, too.

Didn't this method do something else?