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

JavaScript에서 'new' 키워드는 무엇입니까?

<시간/>

JavaScript의 new 키워드는 new 연산자입니다. 사용자 정의 개체 유형의 인스턴스를 생성합니다.

구문은 다음과 같습니다.

new constructor[([arguments])]

예시

new 연산자의 사용법에 대해 알아보기 위한 예를 살펴보겠습니다.

<!DOCTYPE html>
<html>
   <body>
      <p id = "test"></p>
      <script>
         var dept = new Object();
         dept.employee = "Amit";
         dept.department = "Technical";
         dept.technology ="Java";
         document.getElementById("test").innerHTML =
            dept.employee + " is working on " + dept.technology + " technology.";
      </script>
   </body>
</html>