fix: remove double space (#44837)

* fix: typo in javascript-algorithms-and-data-structures > object-oriented-programming > understand-own-properties

* revert all the files with translations

* fix last commit error and remove changes from translated files
This commit is contained in:
Aakash Pal
2022-01-19 17:19:43 -05:00
committed by GitHub
parent 9a14bcbeb4
commit 1c56d4cdda

View File

@ -12,7 +12,7 @@ In the following example, the `Bird` constructor defines two properties: `name`
```js
function Bird(name) {
this.name = name;
this.name = name;
this.numLegs = 2;
}