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 3c4f80e commit 25702d2Copy full SHA for 25702d2
1 file changed
Sprint-1/4-stretch-explore/objects.md
@@ -12,5 +12,12 @@ Try also entering `typeof console`
12
13
Answer the following questions:
14
15
-What does `console` store?
16
-What does the syntax `console.log` or `console.assert` mean? In particular, what does the `.` mean?
+What does `console` store? - is an object of properies of methods
+
17
+What does the syntax `console.log` or `console.assert` mean? In particular, what does the `.` mean?
18
19
+* console.log() is call and display something on the terminal/console
20
+* console.assert() checks if the condition is True or False
21
+* the . is also called the dot notation - access something that belongs to an object - method is a function that stores inside a function
22
23
0 commit comments