Sascha Schulz
2023-04-18 0a3cbef66bca43544e6e15b024273a8c25f32259
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);