Notice
Recent Posts
Recent Comments
Link
컴퓨터는 잘못이 없다..
[JavaScript]반복문 For, For을 이용한 배열 출력 방법 본문
Contents
접기
[For문의 형태 2가지]
형태1. 반복문
ex)
for(let i=0; i<10; i++){
코드...
}
형태2. for in 반복문 (배열 전용 for문)
ex)
for(i in arrays){
코드...
}
[For문 예제코드]
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Step06_array2.html</title>
</head>
<body>
<h1>array type 테스트</h1>
<button onclick="printNames()">출력하기</button>
<script>
let names = ["김구라", "해골","원숭이","주뎅이","덩어리"];
//배열에 저장된 이름을 콘솔창에 순서대로 출력해 보세요.
function printNames(){
//배열 출력 방법1_개고생 방법
console.log(names[0]);
console.log(names[1]);
console.log(names[2]);
console.log(names[3]);
console.log(names[4]);
//배열 출력 방법2_for문을 이용해 출력하는 방법
for(let i=0; i<names.length; i++){
console.log(names[i]);
}
//배열 출력 방법3_for in 문을 이용해 출력하는 방법
for(let i in names){
console.log(names[i]);
}
}
</script>
</body>
</html>
'공부 > JavaScript' 카테고리의 다른 글
[JavaScript]for문, for each문 퀴즈, 화면에 동적으로 요소 추가해보기 (0) | 2020.11.05 |
---|---|
[JavaScript]Array Type 파헤쳐보기, typeof 연산자, length와 push() (0) | 2020.11.05 |
[JavaScript]if~else문 (0) | 2020.11.05 |
Comments