não devolver nada JavaScript
if (1 = 1){
console.log("True")
} else {
return; // Will Return nothing
}
Undefined
if (1 = 1){
console.log("True")
} else {
return; // Will Return nothing
}