Skip to content

Commit 171051e

Browse files
author
russom
committed
Format answers with numbers.
1 parent 59a3ca0 commit 171051e

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ What does `console` store?
1616
What does the syntax `console.log` or `console.assert` mean? In particular, what does the `.` mean?
1717

1818

19-
// Answer
19+
Answer
2020

21-
// 1. When 'console.log' entered it gave the output: 'Uncaught ReferenceError: consol is not defined'.
21+
1. When 'console.log' entered it gave the output: 'Uncaught ReferenceError: consol is not defined'.
2222

23-
// 2. When 'console' entered it gave the output: 'console {debug: ƒ, error: ƒ, info: ƒ, log: ƒ, warn: ƒ, …}'.
23+
2. When 'console' entered it gave the output: 'console {debug: ƒ, error: ƒ, info: ƒ, log: ƒ, warn: ƒ, …}'.
2424

25-
// 4. 'console; stores object.
25+
4. 'console; stores object.
2626

27-
// 5. 'console.log' print/display a value.
27+
5. 'console.log' print/display a value.
2828

29-
// 6. 'console.assert' checks weather a condition is true or false.
29+
6. 'console.assert' checks weather a condition is true or false.
3030

31-
// 7. '.' means access the value inside the object.
31+
7. '.' means access the value inside the object.

0 commit comments

Comments
 (0)