Outline

JavaScript will implicitly convert, or 'coerce', Numbers to Strings if you try to join them to a String with the addition operator: 5 + '7' = '57'

You can also explicitly coerce a value into a different type by using the type constructors: Boolean(), Number(), and String().

 

I finished! On to the next chapter