convert json to base64 javascript

Solutions on MaxInterview for convert json to base64 javascript by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "convert json to base64 javascript"
Andrea
03 Jan 2018
1const json = { "a": 1, "b": 2 }
2const string = JSON.stringify(json) // convert Object to a String
3const encodedString = btoa(string) // Base64 encode the String