如何确定是否向 JavaScript 函数发送了参数?
要确定是否向函数发送了参数,请使用“default”参数。
示例
您可以尝试运行以下内容来实现它
<!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>
广告