RosettaCodeData/Task/Caesar-cipher/JavaScript/caesar-cipher-2.js

6 lines
180 B
JavaScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
var caesar = (text, shift) => text
.toUpperCase()
.replace(/[^A-Z]/g, '')
.replace(/./g, a =>
2023-12-16 21:33:55 -08:00
String.fromCharCode(((a.charCodeAt(0) - 65 + shift) % 26 + 26) % 26 + 65));