웹 애플리케이션을 위한 자바스크립트 프로그래밍 요약 JavaScript Programming for Web Applications Summary - CAD101-9
웹 애플리케이션을 위한 자바스크립트 프로그래밍 요약 JavaScript Programming for Web Applications Summary - CAD101-9
웹 프로그래밍 언어 중 html, css 등과 함께 추가로 사용하는 자바스크립트(javascripts)에 대하여 간단하게 요약정리해 보았습니다.
*국문
웹 애플리케이션을 위한 자바스크립트 프로그래밍 요약
-JavaScript는 개발자가 웹페이지에 동적 콘텐츠를 추가할 수 있게 해주는 스크립팅 언어입니다.
-JavaScript 변수는 var 키워드를 사용하여 선언되며 할당된 값에서 그 유형을 취합니다.
-프로그램 실행은 If…Then…Else, Switch, For 루프 및 While 루프와 같은 문을 통해 제어됩니다.
-JavaScript는 함수라고 불리는 코드 블록을 사용하며 이는 스크립트 어디에서나 호출할 수 있습니다.
-새로운 메서드와 속성은 해당 객체의 프로토 타입을 수정하여 추가할 수 있습니다.
-프로토 타입을 사용하면 특정 객체의 모든 인스턴스에 대한 속성 및 메서드를 정의할 수 있습니다.
-클라이언트 측 스크립트는 HTML 문서와 함께 제공되어 더 많은 상호 작용 요소를 통합하는 데 사용되는 프로그램입니다.
-script 태그는 HTML 문서 내에 스크립트를 포함하거나 외부 파일에서 스크립트를 호출할 수 있습니다.
-문서 객체 모델(DOM)은 HTML 또는 XHTML과 JavaScript 간의 프로그래밍 인터페이스입니다.
-개발자는 올바른 DOM 표기법을 사용하여 JavaScript 스크립트에서 HTML DOM 요소에 액세스할 수 있습니다.
-API는 종종 웹 페이지에서 HTML DOM 요소에 액세스하는 데 사용됩니다."
*영문
JavaScript Programming for Web Applications Summary
-JavaScript is a scripting language that enables developers to add dynamic content to webpages.
-JavaScript variables are declared using the var keyword and take their type from the value assigned.
-Program execution is controlled by statements like If…Then…Else, Switch, For loops, and While loops.
-JavaScript uses blocks of code, called functions, that can be called from anywhere in the script.
-New methods and properties can be added to an object by modifying the prototype for that object.
-Prototypes allow you to define properties and methods for all instances of a specific object.
-Client-side scripts are programs that accompany HTML documents and are used by developers to incorporate more interactive elements.
-The script tag can incorporate a script within an HTML document or call a script from an external file.
-The Document Object Model(DOM) is the programming interface between HTML or XHTML and JavaScript.
-Developers can access HTML DOM elements from JavaScript scripts using the correct DOM notation.-APIs are often used to access HTML DOM elements in web pages.