UNPKG
bounouar-my-exercices
Version:
latest (0.9.1)
0.9.1
0.9.0
0.8.0
0.7.0
0.6.0
0.5.0
0.4.0
0.1.0
gitlab.com/Detenp/bounouar-my-exercices
bounouar-my-exercices
/
day-1
/
exercise-2.js
12 lines
(9 loc)
•
271 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ my_display_alpha }
from
"./exercise-1.js"
export
const
my_display_alpha_reverse
= (
) => {
let
alphabet =
my_display_alpha
();
var
result =
""
for
(
let
i = alphabet.
length
-
1
; i >=
0
; i--) { result += alphabet[i]; }
return
result; }