let out = ""
for i in Object.keys(this) {
  out += `${Object.keys(this)[i]}: ${Object.values(this)[i]}\n`
}
out
SyntaxError: Unexpected identifier
View all comments