class Chef{ constructor(food){ this.food = food; } cook(){ console.log(this.food) } } let zhangsan =new Chef(‘eggs’); //eggs