I noticed that when I convert a javascript string to base64 with atob and then back to text with btoa it returns a string different than where I started. I am wondering why?
Example:
btoa(atob('hello world'));
The result of this in Chrome dev tools is:
"helloworlQ=="
Any ideas why?