Skip to content

Commit 082fdd9

Browse files
committed
update
1 parent e846b27 commit 082fdd9

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

Example/demo3.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
add(1,1);
2+
add2(1,2);
3+
add3(1,3);
4+
function add1(i,j) {
5+
console.log(i+j);
6+
}
7+
8+
var add2 = function (i,j) {
9+
console.log();
10+
}
11+
12+
var token = getResponseHeader('x-auth-token');
13+
14+
xmlhttp=new XMLHttpRequest()
15+
console.log(xmlhttp.getResponseHeader);
16+
17+
function functionName() {
18+
var arr2 = [];
19+
for (var i = 0; i < 2; i++) {
20+
arr2[i] = [];
21+
for (var j = 0; j < 3; i++) {
22+
arr2[i][j]=i+j;
23+
}
24+
}
25+
console.log(arr2);
26+
}
27+
functionName();

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,9 @@ function forEach(obj,fn) {
10261026
</other>
10271027
</note>
10281028
```
1029-
* XML
1029+
1030+
* HTML
1031+
10301032
```HTML
10311033
<!DOCTYPE html>
10321034
<html>

0 commit comments

Comments
 (0)