what is base64
Base64 is a one of the binary-to-text encoding schemes
Application
Base64 encoding schemes are used
encode binary data that needs to be "stored and transferred over media
that are designed to deal with ASCII".
Convert
btoa() - binary to ASCII
atob() - ASCII to binary
#javascript #javascriptfunctions