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: Sprint-2/4-stretch-explore/objects.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,4 +13,9 @@ Try also entering `typeof console`
13
13
Answer the following questions:
14
14
15
15
What does `console` store?
16
+
17
+
// `console` stores methods
18
+
16
19
What does the syntax `console.log` or `console.assert` mean? In particular, what does the `.` mean?
20
+
21
+
// The `console.log` or `console.assert` means access log or assert method from console object and the `.` is called the dot operator, and it is used to access the property or method of an object or value
0 commit comments