10.2. Используя функции
/*If a function doesn't provide an explicit return value, the special
value undefined will be returned.*/
//Example
let returnVal = console.log("LaunchCode");
console.log(returnVal);
//LaunchCode
//undefined
Tough Tortoise