Task
You have a list of things (array) and you would like to modify all of them in the same way.
eg:
url_list = ['google.com', 'apple.com', 'amazon.com']
desired output is for example:
www_url = ['www.google.com', 'www.apple.com', 'www.amazon.com']
Issue/Question
What's the simplest way to update all of those values that work in Apps Script.