javascript function to do nothing code example
Example: return nothing javascript
if (1 = 1){
console.log("True")
} else {
return; // Will Return nothing
}
if (1 = 1){
console.log("True")
} else {
return; // Will Return nothing
}