Skip to content

Commit a6050ec

Browse files
Complete objects.md stretch exercise
1 parent dc12eda commit a6050ec

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Sprint-2/4-stretch-explore/objects.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@ In this activity, we'll explore some additional concepts that you'll encounter i
55
Open the Chrome devtools Console, type in `console.log` and then hit enter
66

77
What output do you get?
8+
Answer: It outputs the function definition itself, showing `ƒ log() { [native code] }`.
89

910
Now enter just `console` in the Console, what output do you get back?
11+
Answer: It returns the `console` object containing various built-in properties and logging methods.
1012

1113
Try also entering `typeof console`
14+
Answer: It outputs `"object"`.
1215

1316
Answer the following questions:
1417

1518
What does `console` store?
19+
Answer: `console` is a built-in global object that stores properties and methods used to output messages, errors, and warnings to the browser console.
20+
1621
What does the syntax `console.log` or `console.assert` mean? In particular, what does the `.` mean?
22+
Answer: The dot (`.`) is the property accessor operator. It is used to access specific methods (`log`, `assert`) attached to the `console` object.

0 commit comments

Comments
 (0)