June 2015
Intermediate to advanced
192 pages
4h 8m
English
The base implementation of JavaScript does not include base64 encoding or decoding. However, all modern browsers include the atob and btoa methods to decode and encode base64 data respectively. These are methods of the window object, defined by the JavaScript runtime.
It's as easy as a method call:
var encodedData = window.btoa("Hello world");
var decodedData = window.atob(encodedData);The btoa function takes a string and returns the base64 encoding of that string. It's a method of the window object and calls to native browser code. The atob function does the reverse, taking a string containing base64 and returning a string with the binary ...
Read now
Unlock full access