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:
xxxxxxxxxx
1
const text = 'some text...';
2
3
const encoded = btoa(text);
4
console.log('Encoded text: ' + encoded); // c29tZSB0ZXh0Li4u
Note:
Use
btoa()
method to convert the string to Base64.