EN
JavaScript - what atob() function name means?
1
answers
6
points
My question is, why atob() function has so strange name?
1 answer
5
points
atob() is very old JavaScript function. The function name convention comes from C language. To keep JS API legacy it stayed unchanged all years.
"atob" name should be read as "ASCII to binary".
atob() function converts Base64 string (a - Base64 ASCII characters) to normal string (b - bytes represented as JavaScript String).
0 comments
Add comment