Sascha Schulz
2023-04-25 8ae855ae27079b48c130b4c7397ae85b192e305e
1
2
3
4
5
6
7
8
function Rectangle(a, b) {
    this.a = a;
    this.b = b;
}
 
const r = new Rectangle(2, 3);
 
console.log(r.a);