Merge pull request #259 from abdul/coding-networking-questions
Add coding and networking questions
This commit is contained in:
commit
c14a686212
|
|
@ -149,9 +149,15 @@ duplicate([1,2,3,4,5]); // [1,2,3,4,5,1,2,3,4,5]
|
|||
* ETag
|
||||
* X-Frame-Options
|
||||
* Can you explain the difference between `GET` and `POST`?
|
||||
* Can you explain the difference between `GET` and `HEAD`?
|
||||
|
||||
#### Coding Questions:
|
||||
|
||||
*Question: What is the value of `foo`?*
|
||||
```javascript
|
||||
var foo = 10 + '20';
|
||||
```
|
||||
|
||||
*Question: How would you make this work?*
|
||||
```javascript
|
||||
add(2, 5); // 7
|
||||
|
|
|
|||
Loading…
Reference in New Issue