4.2. Tipo de conversão
/*What happens if we attempt to convert a string to a number, and the
string doesn't directly represent a number?*/
console.log(Number("23bottles"));
//NaN
Tough Tortoise