Skip to content

Commit ada366e

Browse files
authored
"What is" (#859)
1 parent ee99170 commit ada366e

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

src/questions/css-questions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permalink: /questions/css-questions/index.html
55
---
66

77
* What is CSS selector specificity and how does it work?
8-
* What's the difference between "resetting" and "normalizing" CSS? Which would you choose, and why?
8+
* What is the difference between "resetting" and "normalizing" CSS? Which would you choose, and why?
99
* Describe Floats and how they work.
1010
* Describe z-index and how stacking context is formed.
1111
* Describe BFC (Block Formatting Context) and how it works.
@@ -27,9 +27,9 @@ permalink: /questions/css-questions/index.html
2727
* Explain your understanding of the box model and how you would tell the browser in CSS to render your layout in different box models.
2828
* What does ```* { box-sizing: border-box; }``` do? What are its advantages?
2929
* What is the CSS `display` property and can you give a few examples of its use?
30-
* What's the difference between inline and inline-block?
31-
* What's the difference between the "nth-of-type()" and "nth-child()" selectors?
32-
* What's the difference between a relative, fixed, absolute and statically positioned element?
30+
* What is the difference between inline and inline-block?
31+
* What is the difference between the "nth-of-type()" and "nth-child()" selectors?
32+
* What is the difference between a relative, fixed, absolute and statically positioned element?
3333
* What existing CSS frameworks have you used locally, or in production? How would you change/improve them?
3434
* Have you used CSS Grid?
3535
* Can you explain the difference between coding a web site to be responsive versus using a mobile-first strategy?
@@ -40,4 +40,4 @@ permalink: /questions/css-questions/index.html
4040
* Can you give an example of a pseudo class? Can you provide an example use case for a pseudo class?
4141
* What is the difference between a block level element and an inline element. Can you provide examples of each type of element?
4242
* What is the difference between CSS Grid and Flexbox? When would you use one over the other?
43-
* What's the difference between fixed, fluid and responsive layouts?
43+
* What is the difference between fixed, fluid and responsive layouts?

src/questions/fun-questions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ layout: layouts/page.njk
44
permalink: /questions/fun-questions/index.html
55
---
66

7-
* What's a cool project that you've recently worked on?
7+
* What is a cool project that you've recently worked on?
88
* What are some things you like about the developer tools you use?
99
* Who inspires you in the front-end community?
1010
* Do you have any pet projects? What kind?

src/questions/javascript-questions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ permalink: /questions/javascript-questions/index.html
88
* Explain how `this` works in JavaScript.
99
* Can you give an example of one of the ways that working with `this` has changed in ES6?
1010
* Explain how prototypal inheritance works.
11-
* What's the difference between a variable that is: `null`, `undefined` or undeclared?
11+
* What is the difference between a variable that is: `null`, `undefined` or undeclared?
1212
* How would you go about checking for any of these states?
1313
* What is a closure, and how/why would you use one?
1414
* What language constructions do you use for iterating over object properties and array items?
1515
* Can you describe the main difference between the `Array.forEach()` loop and `Array.map()` methods and why you would pick one versus the other?
16-
* What's a typical use case for anonymous functions?
17-
* What's the difference between host objects and native objects?
16+
* What is a typical use case for anonymous functions?
17+
* What is the difference between host objects and native objects?
1818
* Explain the difference between: `function Person(){}`, `var person = Person()`, and `var person = new Person()`?
1919
* Explain the differences on the usage of `foo` between `function foo() {}` and `var foo = function() {}`
20-
* Can you explain what `Function.call` and `Function.apply` do? What's the notable difference between the two?
20+
* Can you explain what `Function.call` and `Function.apply` do? What is the notable difference between the two?
2121
* Explain `Function.prototype.bind`.
22-
* What's the difference between feature detection, feature inference, and using the UA string?
22+
* What is the difference between feature detection, feature inference, and using the UA string?
2323
* Explain "hoisting".
2424
* What is type coercion? What are common pitfalls of relying on type coercion in JavaScript code?
2525
* Describe event bubbling.
2626
* Describe event capturing.
27-
* What's the difference between an "attribute" and a "property"?
27+
* What is the difference between an "attribute" and a "property"?
2828
* What are the pros and cons of extending built-in JavaScript objects?
2929
* What is the difference between `==` and `===`?
3030
* Explain the same-origin policy with regards to JavaScript.

src/translations/_template/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ permalink: /translations/************/index.html
7373
#### [[]](#toc) <a name='css'>CSS Questions:</a>
7474

7575
* What is CSS selector specificity and how does it work?
76-
* What's the difference between "resetting" and "normalizing" CSS? Which would you choose, and why?
76+
* What is the difference between "resetting" and "normalizing" CSS? Which would you choose, and why?
7777
* Describe Floats and how they work.
7878
* Describe z-index and how stacking context is formed.
7979
* Describe BFC (Block Formatting Context) and how it works.
@@ -95,9 +95,9 @@ permalink: /translations/************/index.html
9595
* Explain your understanding of the box model and how you would tell the browser in CSS to render your layout in different box models.
9696
* What does ```* { box-sizing: border-box; }``` do? What are its advantages?
9797
* What is the CSS `display` property and can you give a few examples of its use?
98-
* What's the difference between inline and inline-block?
99-
* What's the difference between the "nth-of-type()" and "nth-child()" selectors?
100-
* What's the difference between a relative, fixed, absolute and statically positioned element?
98+
* What is the difference between inline and inline-block?
99+
* What is the difference between the "nth-of-type()" and "nth-child()" selectors?
100+
* What is the difference between a relative, fixed, absolute and statically positioned element?
101101
* What existing CSS frameworks have you used locally, or in production? How would you change/improve them?
102102
* Have you used CSS Grid?
103103
* Can you explain the difference between coding a web site to be responsive versus using a mobile-first strategy?
@@ -116,23 +116,23 @@ permalink: /translations/************/index.html
116116
* Explain how `this` works in JavaScript.
117117
* Can you give an example of one of the ways that working with `this` has changed in ES6?
118118
* Explain how prototypal inheritance works.
119-
* What's the difference between a variable that is: `null`, `undefined` or undeclared?
119+
* What is the difference between a variable that is: `null`, `undefined` or undeclared?
120120
* How would you go about checking for any of these states?
121121
* What is a closure, and how/why would you use one?
122122
* What language constructions do you use for iterating over object properties and array items?
123123
* Can you describe the main difference between the `Array.forEach()` loop and `Array.map()` methods and why you would pick one versus the other?
124-
* What's a typical use case for anonymous functions?
125-
* What's the difference between host objects and native objects?
124+
* What is a typical use case for anonymous functions?
125+
* What is the difference between host objects and native objects?
126126
* Explain the difference between: `function Person(){}`, `var person = Person()`, and `var person = new Person()`?
127127
* Explain the differences on the usage of `foo` between `function foo() {}` and `var foo = function() {}`
128-
* Can you explain what `Function.call` and `Function.apply` do? What's the notable difference between the two?
128+
* Can you explain what `Function.call` and `Function.apply` do? What is the notable difference between the two?
129129
* Explain `Function.prototype.bind`.
130-
* What's the difference between feature detection, feature inference, and using the UA string?
130+
* What is the difference between feature detection, feature inference, and using the UA string?
131131
* Explain "hoisting".
132132
* What is type coercion? What are common pitfalls of relying on type coercion in JavaScript code?
133133
* Describe event bubbling.
134134
* Describe event capturing.
135-
* What's the difference between an "attribute" and a "property"?
135+
* What is the difference between an "attribute" and a "property"?
136136
* What are the pros and cons of extending built-in JavaScript objects?
137137
* What is the difference between `==` and `===`?
138138
* Explain the same-origin policy with regards to JavaScript.
@@ -209,7 +209,7 @@ console.log("foo" && "bar")
209209

210210
#### [[]](#toc) <a name='fun'>Fun Questions:</a>
211211

212-
* What's a cool project that you've recently worked on?
212+
* What is a cool project that you've recently worked on?
213213
* What are some things you like about the developer tools you use?
214214
* Who inspires you in the front-end community?
215215
* Do you have any pet projects? What kind?

0 commit comments

Comments
 (0)