.atob()

Description

Decodes a Base-64 encoded string and returns the original string.

Parameters

atob takes no parameters.

Usage On Strings

orig = "SGVsbG8gd29ybGQ=".atob()
// "Hello world"

Last updated

Was this helpful?