We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f10bee6 + 4d125ac commit bd1a176Copy full SHA for bd1a176
challenges/objects-challenges.md
@@ -170,7 +170,7 @@ const obj = userObjectCreator(1);
170
171
###### Notes
172
173
-`obj.id` is a ready only property and does not allow overwriting
+`obj.id` is a read only property and does not allow overwriting
174
175
<br />
176
@@ -461,7 +461,7 @@ Class in JavaScript is functionality to achieve class based model on top of prot
461
462
463
464
-### Q. Write a program to make all the properties of an object ready only but allow the addition of new properties
+### Q. Write a program to make all the properties of an object read only but allow the addition of new properties
465
466
- The exisiting properties of the object can be made read only with `set` keyword using Proxy
467
0 commit comments