본문 바로가기

Python_WEB/JavaScript

[freecodecamp]JavaScript 하나의 배열을 다른 배열 내에 중첩

반응형

아래와 같이 다른 배열 내에 배열을 중첩 할 수도 있습니다.

 

예>

[["Bulls", 23], ["White Sox", 45]]

 

이를 다차원 배열이라고도합니다.

 

Q>

1. myArray라는 중첩 배열을 만듭니다.

2. myArray에는 다른 배열 내에 중첩 된 배열이 하나 이상 있어야합니다.

 

A>

// Only change code below this line
var myArray = [["ankiwoong", 1], ["kimyurim", 2]];

 

https://www.freecodecamp.org/

 

freeCodeCamp.org

Learn to code. Build projects. Earn certifications.Since 2015, 40,000 graduates have gotten jobs at tech companies including Google, Apple, Amazon, and Microsoft.

www.freecodecamp.org

 

반응형