function btoa
Jump to headingbtoa(s: string): string
Creates a base-64 ASCII encoded string from the input string.
console.log(btoa("hello world")); // outputs "aGVsbG8gd29ybGQ="
Parameters Jump to heading
Jump to headings: string
Return Type Jump to heading
string