在 JavaScript 中向方法傳遞空引數


以下是在 JavaScript 中向方法傳遞空引數的程式碼 −

示例

 線上演示

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .result {
      font-size: 18px;
      font-weight: 500;
      color: blueviolet;
   }
</style>
</head>
<body>
<h1>Passing empty parameter to a method</h1>
<div class="result"></div>
<button class="Btn">Click here</button>
<h3>Click on the above button to call multiply function and pass empty
parameters to it</h3>
<script>
   let resEle = document.querySelector(".result");
   let BtnEle = document.querySelector(".Btn");
   function multiply(a = 2, b = 4) {
      return a * b;
   }
   BtnEle.addEventListener("click", () => {
      resEle.innerHTML = "The multiplication of numbers = " + multiply();
   });
</script>
</body>
</html>

輸出

在單擊“單擊此處”按鈕時 −


更新日期:17-7-2020

1K+ 次瀏覽

開啟您的 職業生涯

完成課程後獲得認證

開始
廣告
© . All rights reserved.