We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb852dd commit 242fca7Copy full SHA for 242fca7
Sprint-1/4-stretch-explore/objects.md
@@ -13,4 +13,11 @@ Try also entering `typeof console`
13
Answer the following questions:
14
15
What does `console` store?
16
+
17
+`Answer` => console stores methods(function) that you can call to perform actions like logging, warning, or displaying error.
18
19
What does the syntax `console.log` or `console.assert` mean? In particular, what does the `.` mean?
20
21
+`console.log()` prints the out put.
22
+`console.assert()` checks the condition.
23
+`The dot operator` is called member access. It accesses a property or method of an object.
0 commit comments