You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: 1-js/04-object-basics/01-object/article.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -339,7 +339,7 @@ To walk over all keys of an object, there exists a special form of the loop: `fo
339
339
The syntax:
340
340
341
341
```js
342
-
for(key in object) {
342
+
for(key in object) {
343
343
// executes the body for each key among object properties
344
344
}
345
345
```
@@ -353,7 +353,7 @@ let user = {
353
353
isAdmin:true
354
354
};
355
355
356
-
for(let key in user) {
356
+
for(let key in user) {
357
357
// keys
358
358
alert( key ); // name, age, isAdmin
359
359
// values for the keys
@@ -363,7 +363,7 @@ for(let key in user) {
363
363
364
364
Note that all "for" constructs allow us to declare the looping variable inside the loop, like `let key` here.
365
365
366
-
Also, we could use another variable name here instead of `key`. For instance, `"for(let prop in obj)"` is also widely used.
366
+
Also, we could use another variable name here instead of `key`. For instance, `"for(let prop in obj)"` is also widely used.
367
367
368
368
369
369
### Ordered like an object
@@ -384,7 +384,7 @@ let codes = {
384
384
};
385
385
386
386
*!*
387
-
for(let code in codes) {
387
+
for(let code in codes) {
388
388
alert(code); // 1, 41, 44, 49
389
389
}
390
390
*/!*
@@ -442,7 +442,7 @@ let codes = {
442
442
"+1":"USA"
443
443
};
444
444
445
-
for(let code in codes) {
445
+
for(let code in codes) {
446
446
alert( +code ); // 49, 41, 44, 1
447
447
}
448
448
```
@@ -720,7 +720,7 @@ To access a property, we can use:
720
720
Additional operators:
721
721
- To delete a property: `deleteobj.prop`.
722
722
- To check if a property with the given key exists: `"key"in obj`.
723
-
- To iterate over an object: `for(let key in obj)` loop.
723
+
- To iterate over an object: `for(let key in obj)` loop.
724
724
725
725
Objects are assigned and copied by reference. In other words, a variable stores not the "object value", but a "reference" (address in memory) for the value. So copying such a variable or passing it as a function argument copies that reference, not the object. All operations via copied references (like adding/removing properties) are performed on the same single object.
0 commit comments