ERB console.log is falsy
default_city= "kw";
city = "";
city = city || console.log(`please input city`) || default_city;
// console.log is technically a function with return undefined
console.log(city);INFO
default_city= "kw";
city = "";
city = city || console.log(`please input city`) || default_city;
// console.log is technically a function with return undefined
console.log(city);