Decodes a Base-64 encoded string and returns the original string.
atob takes no parameters.
atob
orig = "SGVsbG8gd29ybGQ=".atob() // "Hello world"
Last updated 4 months ago