Referring JavaScript function from within itself


Following is the code to refer JavaScript function from within itself −

Example

 Live Demo

<!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: 20px;
      font-weight: 500;
      color: blueviolet;
   }
</style>
</head>
<body>
<h1>Referring JavaScript function from within itself</h1>
<div class="result"></div>
<br />
<button class="Btn">Click Here</button>
<h3>Click on the above button to call the printHello() function</h3>
<script>
   let resEle = document.querySelector(".result");
   let BtnEle = document.querySelector(".Btn");
   function printHello(num) {
      for (let i = 0; i < num; i++) {
         resEle.innerHTML += "Hello World <br>";
         printHello(--num);
      }
   }
   BtnEle.addEventListener("click", () => {
      printHello(3);
   });
</script>
</body>
</html>

Output

On clicking the ‘Click Here’ button −

Updated on: 18-Jul-2020

51 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements