Skip to content

Commit 8406920

Browse files
committed
Add description for markdown padding and update date
1 parent 5dd980b commit 8406920

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
I post daily multiple choice JavaScript questions on my [Instagram](https://www.instagram.com/theavocoder), which I'll also post here!
44

5-
From basic to advanced: test how well you know JavaScript, refresh your knowledge a bit, or prepare for your coding interview! :muscle: :rocket: I update this repo weekly with new questions. Last update: <a href=#20190629><b>June 29th</b></a>
5+
From basic to advanced: test how well you know JavaScript, refresh your knowledge a bit, or prepare for your coding interview! :muscle: :rocket: I update this repo weekly with new questions. Last update: <a href=#20190707><b>July 7th</b></a>
66

77
The answers are in the collapsed sections below the questions, simply click on them to expand it. Good luck :heart:
88

@@ -1664,7 +1664,7 @@ However, we created a global variable `y` when setting `y` equal to `10`. This v
16641664

16651665
---
16661666

1667-
###### <a name=20190629></a>55. What's the output?
1667+
###### 55. What's the output?
16681668

16691669
```javascript
16701670
class Dog {
@@ -1963,7 +1963,7 @@ The unary operator `++` _first returns_ the value of the operand, _then incremen
19631963

19641964
---
19651965

1966-
###### 64. What's the output?
1966+
###### <a name=20190707></a>64. What's the output?
19671967

19681968
```javascript
19691969
const value = { number: 10 };
@@ -2152,8 +2152,8 @@ console.log(name.padStart(2))
21522152
```
21532153
21542154
- A: `"Lydia Hallie"`, `"Lydia Hallie"`
2155-
- B: `" Lydia Hallie"`, `" Lydia Hallie"`
2156-
- C: `" Lydia Hallie"`, `"Lydia Hallie"`
2155+
- B: `" Lydia Hallie"`, `" Lydia Hallie"` (`"[13x whitespace]Lydia Hallie"`, `"[2x whitespace]Lydia Hallie"`)
2156+
- C: `" Lydia Hallie"`, `"Lydia Hallie"` (`"[1x whitespace]Lydia Hallie"`, `"Lydia Hallie"`)
21572157
- D: `"Lydia Hallie"`, `"Lyd"`,
21582158
21592159
<details><summary><b>Answer</b></summary>

0 commit comments

Comments
 (0)