I need help πŸ˜΅β€πŸ’« with a 🚨coding problem. I can't seems to get it to console log the string...😩 Am I missing something here? πŸ€”πŸ§

syahiruddin

Syahiruddin Daud

Posted on April 2, 2023

I need help πŸ˜΅β€πŸ’« with a 🚨coding problem. I can't seems to get it to console log the string...😩 Am I missing something here? πŸ€”πŸ§

Image description

The code:

const str = 'QXByaWwncyBGb29sIQ==';

function decodeStr(str) {
  const result = atob(str);
  console.log(result)
  return result;
}


decodeStr(str);
Enter fullscreen mode Exit fullscreen mode
πŸ’– πŸ’ͺ πŸ™… 🚩
syahiruddin
Syahiruddin Daud

Posted on April 2, 2023

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related