4.2. Тип преобразования
/*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