Skip to content
Advertisement

Shift for uppercase letters

I am writing a program on shifting a word. My desired output should be a:f b:g c:h ... y:d z:e A:F B:G C:H ... Y:D Z:E

JavaScript

But after running this code, my output is a:f b:g c:h ... y:d z:e A:f B:g C:h ... Y:d Z:e Seems isupper() function didn’t work here. Could you help with this based on my code structure. Thanks in advance!

Advertisement

Answer

in uppercase condition,

keys[letter] = letters[(index + offset) % 26 + 26]

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement