encode/decode base64 with JS

encode,tipjs,base64

Encoding to base64 is done with the btoa command

btoa("This is a test.")
> "VGhpcyBpcyBhIHRlc3Qu"

To decode a base64 encoded string, use the atob command

atob("VGhpcyBpcyBhIHRlc3Qu")
> "This is a test."

Có thể bạn đã miss một số snippets code

Convert Array-like to True Array

Convert Array-like to True Array

group by property javascript use reduce

group by property javascript use reduce

Getting the last element of a split string array

Getting the last element of a split string array

10 mẹo sử dụng array và object trong javascript

10 mẹo sử dụng array và object trong javascript

So sánh hai array trong javascript

Làm thế nào để đánh giá xem hai mảng có bằng nhau không? Có hai cách đó là sử dụng JSON.stringify() hoặc toString()