function showMessage(from, text) { // 如果 text 的值为假值,则分配默认值 // 这样赋值 text == "" 与 text 无值相同 text = text ?? 'no text given'; console.log(text); console.log(Boolean(0)) } // showMessage("111",0); function test(params){ // 函数内可修改全局变量 param = 5; }; let param = 10; test(); console.log(param);