WebEncodingatobfunction atob#atob(s: string): stringDecodes a string of data which has been encoded using base-64 encoding. console.log(atob("aGVsbG8gd29ybGQ=")); // outputs 'hello world' Parameters ##s: stringReturn Type #string
function atob#atob(s: string): stringDecodes a string of data which has been encoded using base-64 encoding. console.log(atob("aGVsbG8gd29ybGQ=")); // outputs 'hello world' Parameters ##s: stringReturn Type #string