Skip to content

Instantly share code, notes, and snippets.

@ahmadrosid
Created March 8, 2020 12:17
Show Gist options
  • Save ahmadrosid/e44991bd717077f3370bf8a47a6e5adc to your computer and use it in GitHub Desktop.
Save ahmadrosid/e44991bd717077f3370bf8a47a6e5adc to your computer and use it in GitHub Desktop.

Javascript browser builtin base64 function :

const a = btoa("1234") // MTIzNDU=
const b = atob("MTIzNDU=") // 12345
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment