Appearance
js
base64
let rs = btoa('xxx'); // rs 是一个base64字符串 let s = atob(rs); // atob 把base64转成字符串 s==='xxx'