expression
10+13;
'hello';
10 > 9;
10 < 20;
true;
a===20 && b===30;
average = 55;
statement는
컴퓨터가 특정 액션을 하도록 하는 것
변수 만들기,
함수 만들기,
loop
include creating a variable or a function, looping through an array of elements, evaluating code based on a specific condition etc. JavaScript programs are actually a sequence of statements.
-- 출처 --
https://medium.com/launch-school/javascript-expressions-and-statements-4d32ac9c0e74
'Java Script > JS basic' 카테고리의 다른 글
[JS] 비동기2 | Promises란? | 프라미스 체인닝 (0) | 2022.04.27 |
---|---|
[JS] 비동기1 | 콜백 | 콜백 지옥 (0) | 2022.04.26 |
[JS] Math.max() Math.min() Math.ceil() (0) | 2022.04.10 |
자바스크립트 동작원리 stack, queue (0) | 2021.09.22 |
JS] 애니메이션 효과 | setTimeout( ) | 버튼 클릭시 효과 (0) | 2021.08.31 |
댓글