1class A { 2 constructor(param) { 3 this.c = param; 4 } 5 6 a(b = this.c) { 7 print(b); 8 } 9} 10 11let aa = new A(1); 12aa.a(); 13aa.a(2); 14