Given the following alphabet:
{
a: '.-',
b: '-...',
c: '-.-.',
d: '-..',
e: '.',
f: '..-.',
g: '--.',
h: '....',
i: '..',
j: '.---',
k: '-.-',
l: '.-..',
m: '--',
n: '-.',
o: '---',
p: '.--.',
q: '--.-',
r: '.-.',
s: '...',
t: '-',
u: '..-',
v: '...-',
w: '.--',
v: '...-',
x: '-..-',
y: '-.--',
z: '--..'
}
Try encoding the following strings:
var firstWord = "hello world";
var secondWord = "we love javascript";
Write a function that accepts a user input and be able to output the encoded value.
Decode the following messages:
... .- -- ..- . .-.. -- --- .-. ... . .. -. ...- . -. - . -.. -- --- .-. ... . -.-. --- -.. .
-.-- --- ..- .-. .. -. ... - .-. ..- -.-. - --- .-. ... .-.. --- ...- . -.-- --- ..-
- .... .. ... .. ... - .... . .- -. ... .-- . .-. - --- - .... . ..- .-.. - .. -- .- - . --.- ..- . ... - .. --- -. --- ..-. .-.. .. ..-. . - .... . ..- -. .. ...- . .-. ... . .- -. -.. . ...- . .-. -.-- - .... .. -. --.
....