Hi🌱
I love the web.
class HereHaveTheseFlowers {
constructor() {
this.name = "Sergei Kozlov";
this.tech = [
"Typescript",
"SCSS",
"React",
"Are.na",
];
}
get info() {
return (
`My name is ${this.name} and I'm focusing on Front End development and web design. \n` +
`I love learning new technologies and ways to explore/create the web every day. \n` +
`My second favourite thing after dogs is talking to other people. \n` +
`Technologies I use the most are ${this.tech[0]}, ${this.tech[1]}, ${this.tech[2]} and ${this.tech[3]}. \n` +
`My special talent is solving problems in the most creative ways possible. \n\n`
);
}
}
const Me = new HereHaveTheseFlowers();
console.log(Me.info);