반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 쿠킹덤공략
- 프로그래머스
- 프로그래밍
- 오블완
- Eclipse
- 딥러닝
- MySQL
- 이클립스
- 쿠킹덤
- GIT
- 티스토리챌린지
- Java
- edwith
- 홀리데이익스프레스
- 웹개발
- dart
- 자바
- SQL
- programmers
- HTML
- 스프링
- 쿠키런킹덤크리스마스
- oracle
- 쿠키런킹덤
- 쿠키런킹덤공략
- Spring
- 개발자
- 스프링퀵스타트
- 크리스마스
- CSS
Archives
- Today
- Total
Dev study and notes
자바스크립트 구문 JavaScript syntax 본문
반응형
자바스크립트 구문 JavaScript syntax
자바스크립크 코드 작업시 사용하는 구문, 기호들을 정리해보았습니다.
잘 익혀서 코드 작성시 활용하면 되겠습니다.
자바스크립트 구문
이름
|
통사론
|
사용 방법
|
중괄호
|
{ }
|
중괄호는 JavaScript의 함수 및 기타 코드 블록을 묶습니다. 왼쪽 중괄호는 함수나 코드 블록을 열고 오른쪽 중괄호는 닫습니다. 예를 들어, if 문은 여는 중괄호와 닫는 중괄호를 사용하여 코드를 묶습니다.
if (a == b) {
warning ("a and b are the same")
}
|
등호
|
=
|
등호 또는 할당 연산자는 변수에 어떤 데이터가 포함되어야 하는지 알려줍니다. 예를 들어, myVar = 3은 myVar 변수를 3과 동일하게 만듭니다.
|
이중 등호
|
==
|
이중 등호 또는 등호 연산자는 두 값이 동일한지 여부를 평가합니다. a == b 라는 문구는 a의 값이 b와 같은지 여부를 평가합니다. 이중 등호를 사용할 때 JavaScript는 다른 유형의 값을 변환하고 비교하려고 시도합니다. 예를 들어 JavaScript는 첫 번째 값이 문자열이고 두 번째 값이 숫자인 경우에도 '1' == 1을 동일한 것으로 평가합니다.
|
삼중 등호
|
===
|
삼중 등호 또는 엄밀히 같음 연산자는 두 항목이 엄밀히 동일한지 여부를 평가합니다. 예를 들어, JavaScript는 첫 번째 값이 문자열이고 두 번째 값이 숫자이기 때문에 '1' === 1을 다르게 평가합니다.
|
세미콜론
|
;
|
세미콜론은 명령문이 완료되었음을 나타냅니다. 예를 들어, 이 명령문 끝에 세미콜론을 배치하면 JavaScript가 명령문을 완료하고 실행할 준비가 된 것으로 처리하도록 지시합니다. Alert(“hello”);
|
괄호
|
( )
|
여는 괄호와 닫는 괄호는 함수와 정보를 주고 받습니다. 예를 들어, myFunction(3 )은 값 3을 myFunction이라는 함수에 전달합니다.
|
JavaScript syntax
Name
|
Syntax
|
How it's used
|
Curly braces
|
{ }
|
Curly braces enclose functions and other code blocks in JavaScript. The left curly brace opens the function or code block and the right one closes it. For example, an if statement would enclose code using the open and closing curly braces:
if (a == b) {
alert ("a and b are the same")
}
|
Equal sign
|
=
|
The equal sign or assignment operator tells a variable what data it should contain. For example, myVar = 3 makes the variable myVar equal to 3.
|
Double equal sign
|
==
|
The double equal sign or equality operator evaluates whether two values are the same. The phrase a == b would evaluate whether the value of a is the same as b. When using the double equal sign, JavaScript will attempt to convert and compare values that are of different types. For example, JavaScript will evaluate ‘1’ == 1 as the same even though the first value is a string and the second is a number.
|
Triple equal sign
|
===
|
The triple equal sign or strictly equality operator evaluates whether two items are strictly the same. For example, JavaScript will evaluate ‘1’ === 1 as different because the first value is a string and the second is a number.
|
Semicolon
|
;
|
The semicolon indicates that a statement is complete. For example, placing a semicolon at the end of this statement tells JavaScript to treat the statement as complete and that it’s ready to be run: alert(“hello”);
|
Parentheses
|
( )
|
The open and close parentheses send or receive information to and from functions. For example, myFunction(3) would pass the value of 3 to the function called myFunction.
|
끝!
반응형
'studyLog' 카테고리의 다른 글
백엔드 개발자 Back-end developer (0) | 2024.08.21 |
---|---|
프론트엔드 개발자 Front-end developer (0) | 2024.08.06 |
자바스크립트 이벤트 리스너와 이벤트 핸들러 차이 javascripts event listener handler (0) | 2024.08.05 |
웹 개발자들이 기억해야할 주요 사항 (0) | 2024.06.27 |
sts3 lombok 오류 롬복 lombok.jar 스프링 업데이트 (0) | 2024.06.27 |
Comments