To check if a string contains a value we use .isEmpty. It returns a boolean value based on what's inside.

Can you guess what the result of the print statement will be?

truefalse

Great! As there's no text or whitespace between the double quotes, name.isEmpty returns true.

name doesn't have any text or whitespace, right?