js morse alphabet

Solutions on MaxInterview for js morse alphabet by the best coders in the world

showing results for - "js morse alphabet"
Kyran
18 Oct 2016
1const morseCode = {
2   "A": ".-",
3   "B": "-...",
4   "C": "-.-.",
5   "D": "-..",
6   "E": ".",
7   "F": "..-.",
8   "G": "--.",
9   "H": "....",
10   "I": "..",
11   "J": ".---",
12   "K": "-.-",
13   "L": ".-..",
14   "M": "--",
15   "N": "-.",
16   "O": "---",
17   "P": ".--.",
18   "Q": "--.-",
19   "R": ".-.",
20   "S": "...",
21   "T": "-",
22   "U": "..-",
23   "W": ".--",
24   "X": "-..-",
25   "Y": "-.--",
26   "Z": "--.."
27}