class WhoAmI {
constructor() {
this.user = 'Daria Furman';
this.current_work = 'Building web apps';
this.education = [
'Bachelor at Computer Science',
'Masters at Computer Engineering'
];
this.hobbies = [
'Photography',
'Cooking',
'Travel'
];
}
getCity() {
return 'Kharkiv, Ukraine';
}
}
_________________