-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
41 lines (32 loc) · 858 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// What are you looking for here?
// Maybe you're at the right place
const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
let message = 'EXAMPLEMESSAGE';
const number1 = 0;
const number2 = 1;
const add = (text, n) => {
const letters = text.toUpperCase().split('');
return letters
.map((l) => {
const index = alphabet.indexOf(l);
// Increment each letter by n
const newIndex = (index + n) % 26;
return alphabet[newIndex];
})
.join('');
};
const multiply = (text, n) => {
const letters = text.toUpperCase().split('');
return letters
.map((l) => {
const index = alphabet.indexOf(l) + 1;
// Multiply each letter by n
const newIndex = (index * n - 1) % 26;
return alphabet[newIndex];
})
.join('');
};
// The magic happens here
message = add(message, number1);
message = multiply(message, number2);
console.log(message);