We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2360efc commit 3e0c123Copy full SHA for 3e0c123
unn04012/stack/string_reversal.js
@@ -0,0 +1,5 @@
1
+function solution(my_string) {
2
+ return my_string.split('').reverse().join('');
3
+}
4
+
5
+console.log(solution('jaron'));
0 commit comments