class Person{ constructor(name){ this.name=name; } walk(){ console.log("WALK : "+ this.name); } } const person = new Person("Waqas"); person.walk();