如何确定是否向 JavaScript 函数发送了参数?


要判断是否向函数发送了参数,使用“默认”参数。

示例

你可以尝试运行以下命令来实现它

在线演示

<!DOCTYPE html>
<html>
   <body>
      <script>
         function display(arg1 = 'Tutorials', arg2 = 'Learning') {
            document.write(arg1 + ' ' +arg2+"<br>");
         }
         display('Tutorials', 'Learning');
         display('Tutorials');
         display();
      </script>
   </body>
</html>

更新于: 07-Jan-2020

83 次浏览

启动你的 职业

完成课程认证

立即开始
广告