Heya! I'm Furkan AYDIN. I do front-end and back-end development. I really enjoy learning new technologies and frameworks like Vue and React, as well as working golang and nodejs.
class Person {
constructor(name) {
this.name = "Furkan AYDIN";
this.username = "frkn-aydn";
this.location = "Istanbul, Turkey";
this.twitter = "_frknaydn";
this.website = "https://furkanaydin.com/"
}
introduceSelf() {
console.log(`Heya! I'm ${this.name}. I do front-end and back-end development. I really enjoy learning new technologies and frameworks like Vue and React, as well as working golang and nodejs.`);
}
}