We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8315933 + 458b74f commit e6d7e24Copy full SHA for e6d7e24
Challenge/Songmyeongseok/2.arryMethd/README.md
@@ -0,0 +1,11 @@
1
+# 문제2 : 배열의 내장함수
2
+
3
+<pass>부분에 배열 내장함수를 이용하여 코드를 입력하고 다음과 같이 출력되게 하세요.
4
5
+데이터
6
+var arr = [200, 100, 300];
7
+//pass
8
+console.log(arr);
9
10
+출력
11
+[200, 100, 10000, 300]
Challenge/Songmyeongseok/2.arryMethd/solve.js
@@ -0,0 +1,14 @@
+// # 문제2 : 배열의 내장함수
+// <pass>부분에 배열 내장함수를 이용하여 코드를 입력하고 다음과 같이 출력되게 하세요.
12
13
+//답
14
+//arr.splice(2,0,1000)
0 commit comments