#!/usr/bin/node
var me;
class FullStackWebDeveloper {
constructor() {
this.name = "Prakhar Nagore";
this.role = "FullStack Web Developer";
this.language_spoken = ["Hindi", "English"];
this.aboutme="I create things that live on Internet"
}
say_hi() {
console.log("Thanks for visiting my profile, hope you find some of my work interesting.");
}
}
me = new FullStackWebDeveloper();
me.say_hi();