const person = {
firstName: 'John',
lastName: 'Doe',
age: 21,
};
let text = "";
for (let x in person) {
text += person[x] + " ";
console.log(text);
}
console.log(text);
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)