📌  相关文章
📜  参数中带有条件的 javascript 函数 - Javascript 代码示例

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

代码示例1
function myFuntionName(condition) {
    //this example uses an if statement
      if (condition) {
        //code 
    }
}

//call the function
let a = 8;
myFunctionName(a > 7);//a > 7 is converted into boolean before it is processed in the function