We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e846b27 commit 082fdd9Copy full SHA for 082fdd9
Example/demo3.js
@@ -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
@@ -1026,7 +1026,9 @@ function forEach(obj,fn) {
1026
</other>
1027
</note>
1028
```
1029
-* XML
1030
+* HTML
1031
1032
```HTML
1033
<!DOCTYPE html>
1034
<html>
0 commit comments