Merge pull request #3195 from digital-bw/patch-1

Update task.md
This commit is contained in:
Ilya Kantor 2022-10-01 19:37:52 +02:00 committed by GitHub
commit aedeed3e5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,8 +10,8 @@ Is it possible to create functions `A` and `B` so that `new A() == new B()`?
function A() { ... }
function B() { ... }
let a = new A;
let b = new B;
let a = new A();
let b = new B();
alert( a == b ); // true
```