How to add my key to this google app script?
问题 I need to update this script to pass my key so that I don't go over the limit per day. How would I modify this script to pass my key? (NOTE: google class information found here: https://developers.google.com/apps-script/reference/maps/geocoder) function geo2zip(a) { var response=Maps.newGeocoder() .reverseGeocode(lat(a),long(a)); return response.results[0].formatted_address.split(',')[2].trim().split(' ')[1]; } function lat(pointa) { var response = Maps.newGeocoder() .geocode(pointa); return