I thought my question would be answered with this or this but neither is what I\'m looking for.
I have an object in Google Script, and want to iterate over each elem
With V8 runtime:
var dict = { "foo": "a", "bar": "b" }; for (const [key, value] of Object.entries(dict)) { Logger.log(`${key}: ${value}`); }