// Welcome to Artupaze world of <code />
👋
class SDE {
constructor(field, state) {
this.expertIn = field;
this.basedFrom = state;
}
getIntroLine() {
return `A Software developer expert in ${this.expertIn}
based from ${this.basedFrom}`;
}
}
const artupaze = new SDE("MERN stack", "Gujarat");
console.log(artupaze.getIntroLine());
// => A Software developer expert in MERN stack based
// from Indonesia
# Did you know that procrastination is just another way of multitasking? Feel free to explore my portfolio while you're here!