전체 글

박정수가 공부한 자료를 남기기 위한 블로그
영어공부

JavaScript Comments

JavaScript comments can be used to explain JavaScript code, and to make it more readable. JavaScript comments can also be used to prevent execution, when testing alternative code. 자바스크립트 주석은 자바스크립트 코드를 설명하기 위해서 사용되어질수 있다. 그리고 자바스크립트 주석은 좀더 읽기 쉽게 만들어 준다. 자바스크립트 주석은 대안의 코드를 실행할때, 실행을 예방하기 위해서 사용되어진다. Single Line Comments Single line comments start with //. Any text between // and the end of the li..

영어공부

JavaScript Syntax

JavaScript syntax is the set of rules, how JavaScript programs are constructed: 자바스크립트 문법은 어떻게 자바스크립트 프로그램들이 구성되어있는가를 정의하는 규칙의 집합이다. JavaScript Values The JavaScript syntax defines two types of values: Fixed values and variable values. Fixed values are called literals. Variable values are called variables. 자바스크립트 변수 자바스크립트 문법은 두가지 변수의 타입을 정의한다. 고정된 변수 변할수 있는 변수 고정된 변수는 literals라고 불리운다 변할수 있는 변수는..

영어공부

JavaScript Statements

JavaScript Programs A computer program is a list of "instructions" to be "executed" by a computer. In a programming language, these programming instructions are called statements. A JavaScript program is a list of programming statements. In HTML, JavaScript programs are executed by the web browser. 컴퓨터 프로그램이란, 컴퓨터의 의해서 실행되어지는 명령어의 리스트이다. 프로그래밍 언어 안에서 이러한 명령어들은 statements 라고 불리어진다. 자바스크립트 프로그램은 프..

jeongsu
Park_jeong_su