https://stackoverflow.com/questions/48270127/can-a-1-a-2-a-3-ever-evaluate-to-true
function wtfExcept() {
try {
console.log('try');
return 'o hi there';
} catch () {
// Can do fun stuff here as well (e.g. nesting xD
} except {
console.log('except');
return 'whats up';
}
}
console.log(wtfExcept());