Add coding and networking questions

This commit is contained in:
Abdul Qabiz 2015-02-14 04:20:42 +05:30
parent bb67b669df
commit 3db1cf8112
1 changed files with 6 additions and 0 deletions

View File

@ -148,9 +148,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