@@ -73,7 +73,7 @@ permalink: /translations/************/index.html
73
73
#### [[ ⬆]] ( #toc ) <a name =' css ' >CSS Questions:</a >
74
74
75
75
* 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?
77
77
* Describe Floats and how they work.
78
78
* Describe z-index and how stacking context is formed.
79
79
* Describe BFC (Block Formatting Context) and how it works.
@@ -95,9 +95,9 @@ permalink: /translations/************/index.html
95
95
* Explain your understanding of the box model and how you would tell the browser in CSS to render your layout in different box models.
96
96
* What does ``` * { box-sizing: border-box; } ``` do? What are its advantages?
97
97
* 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?
101
101
* What existing CSS frameworks have you used locally, or in production? How would you change/improve them?
102
102
* Have you used CSS Grid?
103
103
* 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
116
116
* Explain how ` this ` works in JavaScript.
117
117
* Can you give an example of one of the ways that working with ` this ` has changed in ES6?
118
118
* 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?
120
120
* How would you go about checking for any of these states?
121
121
* What is a closure, and how/why would you use one?
122
122
* What language constructions do you use for iterating over object properties and array items?
123
123
* 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?
126
126
* Explain the difference between: ` function Person(){} ` , ` var person = Person() ` , and ` var person = new Person() ` ?
127
127
* 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?
129
129
* 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?
131
131
* Explain "hoisting".
132
132
* What is type coercion? What are common pitfalls of relying on type coercion in JavaScript code?
133
133
* Describe event bubbling.
134
134
* 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"?
136
136
* What are the pros and cons of extending built-in JavaScript objects?
137
137
* What is the difference between ` == ` and ` === ` ?
138
138
* Explain the same-origin policy with regards to JavaScript.
@@ -209,7 +209,7 @@ console.log("foo" && "bar")
209
209
210
210
#### [[ ⬆]] ( #toc ) <a name =' fun ' >Fun Questions:</a >
211
211
212
- * What's a cool project that you've recently worked on?
212
+ * What is a cool project that you've recently worked on?
213
213
* What are some things you like about the developer tools you use?
214
214
* Who inspires you in the front-end community?
215
215
* Do you have any pet projects? What kind?
0 commit comments