let str = 'Hello '; str += 'world'; if (true) { str += '!'; } str += ' Wonderful to be here!'; str.toUpperCase()
const str = `${'Hello '}${'world'}${ true ? '!' : ''}${ ' Wonderful to be here!'}`; str.toUpperCase()