mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-06 01:18:23 +08:00
Remove live code & console.log (Backtracking, Bit-manipulation, Ciphers).
This commit is contained in:
@ -23,7 +23,8 @@ function Atbash (message) {
|
||||
}
|
||||
return decodedString
|
||||
}
|
||||
// Atbash Example
|
||||
const encryptedString = 'HELLO WORLD'
|
||||
const decryptedString = Atbash(encryptedString)
|
||||
console.log(decryptedString) // SVOOL DLIOW
|
||||
|
||||
export { Atbash }
|
||||
|
||||
// > Atbash('HELLO WORLD')
|
||||
// 'SVOOL DLIOW'
|
||||
|
Reference in New Issue
Block a user