Skip to content

Instantly share code, notes, and snippets.

@teivah
Created October 13, 2024 20:26
Show Gist options
  • Save teivah/ff2cdc20a7a562e65f953990fd51b8de to your computer and use it in GitHub Desktop.
Save teivah/ff2cdc20a7a562e65f953990fd51b8de to your computer and use it in GitHub Desktop.
// Why are you here?
const str = "###+0TPRBlbSZFV3dGVl#lmQY5UNOJDZDhmVXVjWWJ2a4dUZ5tmVk5kSUd1drRVZNpFVUlkTH1#0UoVV##W";
const str2 = str.split('').reverse().join('').replace(/#/g, '').replace(/\+/g, '=');
console.log(str2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment