EN
JavaScript - convert string to Base64
0
points
In this article, we would like to show you how to convert string to Base64 in JavaScript.
Quick solution:
// ONLINE-RUNNER:browser;
const text = 'some text...';
const encoded = btoa(text);
console.log('Encoded text: ' + encoded); // c29tZSB0ZXh0Li4u
Note:
Use
btoa()
method to convert the string to Base64.