Anyone have a suggestion on how to create random b...
# suitescript
d
Anyone have a suggestion on how to create random base64 strings?
b
id say generate a random string, and then base64 encode it
m
an example:
btoa(Math.random().toString(36).substring(2))
is a source string of ~10 normal alphanumeric characters.