Strings are values with built-in helper methods. This lesson keeps the practice focused on one transformation and one membership check.
const phrase = 'hello world';
const upperPhrase = phrase.toUpperCase();
const hasWorld = phrase.includes('world');
Use toUpperCase() to create the uppercase version.