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 12a8cbc commit 9b5b444Copy full SHA for 9b5b444
imchanyo/array/array_element_length.js
@@ -0,0 +1,6 @@
1
+function solution(strlist) {
2
+ var answer = [];
3
+
4
+ strlist.forEach((string) => answer.push(string.length));
5
+ return answer;
6
+}
0 commit comments