Skip to content

Commit

Permalink
Merge pull request #285 from Yuniac/patch-1
Browse files Browse the repository at this point in the history
Fixed tiny typos
  • Loading branch information
sudheerj committed Jun 27, 2024
2 parents 1277d66 + 7802ddf commit ca5e764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3424,7 +3424,7 @@

178. ### What is a freeze method

The **freeze()** method is used to freeze an object. Freezing an object does not allow adding new properties to an object,prevents from removing and prevents changing the enumerability, configurability, or writability of existing properties. i.e, It returns the passed object and does not create a frozen copy.
The **freeze()** method is used to freeze an object. Freezing an object does not allow adding new properties to an object, prevents removing, and prevents changing the enumerability, configurability, or writability of existing properties. i.e. It returns the passed object and does not create a frozen copy.

```javascript
const obj = {
Expand Down

0 comments on commit ca5e764

Please sign in to comment.