mirror of
https://github.com/microsoft/Web-Dev-For-Beginners.git
synced 2025-08-12 01:34:15 +02:00
FIX : fix url for translations folder
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
# JavaScript 기초: 배열과 반복
|
||||
|
||||

|
||||

|
||||
> Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac)
|
||||
|
||||
## 강의 전 퀴즈
|
||||
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
|
||||
[Pre-lecture quiz](../.github/pre-lecture-quiz.md)
|
||||
|
||||
이 강의에서는 웹에서 상호 작용을 제공하는 언어인 JavaScript의 기본 사항을 다룹니다. 데이터를 컨트롤하는 데 사용하는 배열과 반복문에 대해 알아 봅니다.
|
||||
|
||||
@@ -112,7 +112,7 @@ for (let i = 0; i < iceCreamFlavors.length; i++) {
|
||||
for문과 while문 외에 배열을 반복하는 다른 방법이 있습니다. [forEach](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach), [for-of](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of) 그리고 [map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map)도 있습니다. 해당 기술 중 하나를 사용하여 배열 반복을 다시 작성하십시오.
|
||||
|
||||
## 강의 후 퀴즈
|
||||
[Post-lecture quiz](.github/post-lecture-quiz.md)
|
||||
[Post-lecture quiz](../.github/post-lecture-quiz.md)
|
||||
|
||||
|
||||
## 리뷰 & 자기주도 학습
|
||||
@@ -121,4 +121,4 @@ JavaScript의 배열에는 많은 메서드를 가져서 데이터 조작에 매
|
||||
|
||||
## 과제
|
||||
|
||||
[Loop an Array](assignment.md)
|
||||
[Loop an Array](../assignment.md)
|
||||
|
Reference in New Issue
Block a user