출처: https://www.opentutorials.org/module/570/4962
if문
var date = new Date(); |
switch문
var input = Number(prompt('숫자를 입력하세요.', '숫자')); |
삼항 연산자
var input = prompt('숫자 입력', ''); |
짧은 조건문
true || alert('실행될까요?A'); |
while 반복문
value = 0; |
do while 반복문
var value = 0; |
for 반복문
var array = ['포도', '사과', '바나나', '망고']; |
for in 반복문
var array = ['포도', '사과', '바나나', '망고']; |
'IT | 개발 > JavaScript' 카테고리의 다른 글
[JavaScript | 오류 해결] SCRIPT438: 개체가 'includes' 속성이나 메서드를 지원하지 않습니다. (IE, 인터넷 익스플로러에서만 발생) (2) | 2020.01.23 |
---|---|
[kendo | grid] grid에서 체크된 항목 제거하기 (0) | 2020.01.04 |
[kendo | grid] grid에서 체크된 항목의 dataItem 가져오기(여러 개) (0) | 2019.12.31 |
[JavaScript | 오류 해결] The Code of method_jspService is exceeding the 65535 bytes limit (0) | 2019.12.29 |
[JavaScript] 오늘 날짜 (yyyy-mm-dd) 형식으로 가져오기 및 날짜 비교 (1) | 2019.12.05 |