문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
wiki:javascript:javascript_note:js_arrays [2021/04/26 13:55] emblim98 |
wiki:javascript:javascript_note:js_arrays [2023/01/13 18:44] (현재) |
||
---|---|---|---|
줄 13: | 줄 13: | ||
\\ | \\ | ||
<code javascript> | <code javascript> | ||
- | < | + | let cars = [" |
- | | + | document.getElementById(" |
- | document.getElementById(" | + | |
- | </ | + | |
</ | </ | ||
줄 50: | 줄 48: | ||
공백과 줄 바꿈(line breaks)은 중요하지 않습니다. 선언은 여러 줄에 걸쳐있을 수 있습니다.\\ | 공백과 줄 바꿈(line breaks)은 중요하지 않습니다. 선언은 여러 줄에 걸쳐있을 수 있습니다.\\ | ||
<code javascript> | <code javascript> | ||
- | | + | let cars = [ |
- | " | + | " |
- | " | + | " |
- | " | + | " |
- | ]; | + | ]; |
</ | </ | ||
줄 200: | 줄 198: | ||
'' | '' | ||
<code javascript> | <code javascript> | ||
- | | + | let fruits, text; |
- | fruits = [" | + | fruits = [" |
- | | + | text = "< |
- | fruits.forEach(myFunction); | + | fruits.forEach(myFunction); |
- | text += "</ | + | text += "</ |
- | document.getElementById(" | + | document.getElementById(" |
- | | + | function myFunction(value) { |
- | text += "< | + | text += "< |
- | } | + | } |
</ | </ | ||