words per minute
2
GS1430734
00:00
Speed
const person = {
name: 'Alex',
cars: ['ferrari', 'Lamborghni'],
toString: function() {
this.cars.forEach(car => {
console.log(this.name " and " this.cars);
});
}
words per minute
Speed