npx bittricky
class Person { constructor() { this.name = "Mitul Patel"; this.languages = { hindi: "hi-IN", gujarati: "gu-IN", english: "en-US", }; this.tech = { languages: ["JavaScript", "TypeScript", "Python", "SQL", "Bash"] }; } sayHi() { console.log("Thanks for stopping by. Feel free to look around and explore."); } } const me = new Person(); me.sayHi();