Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

자바스크립트 함수 정의

<시간/>

함수 정의는 기본적으로 function 키워드와 함수 이름, 함수 매개변수 및 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;
   }
   .sample {
      font-size: 18px;
      font-weight: 500;
   }
</style>
</head>
<body>
<h1>JavaScript Function Definitions</h1>
<div class="sample"></div>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above buttons to see the function definitions</h3>
<script>
   let sampleEle = document.querySelector(".sample");
   function helloWorld() {
      alert("HELLO WORLD");
   }
   let testFunction = function () {
      alert("TEST FUNCTION");
   };
   document.querySelector(".Btn").addEventListener("click", () => {
      sampleEle.innerHTML = helloWorld + "<br>" + testFunction;
   });
</script>
</body>
</html>

출력

자바스크립트 함수 정의

"여기를 클릭" 버튼을 클릭하면 -

자바스크립트 함수 정의