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.
1 parent ecbe1b2 commit 12a8cbcCopy full SHA for 12a8cbc
imchanyo/array/array_slice.js
@@ -0,0 +1,5 @@
1
+function solution(numbers, num1, num2) {
2
+ var answer = [];
3
+ answer = numbers.splice(num1, num2);
4
+ return answer;
5
+}
0 commit comments