📜  不返回任何内容 javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:49.148000             🧑  作者: Mango

代码示例1
if (1 = 1){
    console.log("True")
} else {
    return; // Will Return nothing
}