Skip to content

Commit

Permalink
Fixed tiny typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuniac committed Jun 27, 2024
1 parent 1277d66 commit 7802ddf
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 7802ddf

Please sign in to comment.