1 meta
2 schema js
3 element array
4 tag _
5 ast
6 category arrays
7 item
8 title array concat single line statement
9 ittf
10 concat myarray 0, 1, 2, [3, 4]
11 item
12 title array concat multi line statement
13 ittf
14 concat myarray
15 @ 0
16 @ 1
17 @ 2
18 [
19 @ 3
20 @ 4
21 item
22 title array concat mixed line statement
23 ittf
24 concat myarray 0, 1
25 @ 2
26 [
27 @ 3
28 @ 4
29 item
30 title array forEach statement with default thisArg
31 ittf
32 each item in myarray
33 set item.a = item.b / 2
34 item
35 title array forEach statement with explicit thisArg
36 ittf
37 each item in myarray myinstance
38 set item.a = item.b / 2
39 item
40 title array filter statement with default thisArg
41 ittf
42 filter item in myarray
43 return item.a == 10
44 item
45 title array filter statement with explicit thisArg
46 ittf
47 filter item in myarray myinstance
48 return item.a == this.maxAge
49 item
50 title array find statement with default thisArg
51 ittf
52 find item in myarray
53 return item.a == 10
54 item
55 title array find statement with explicit thisArg
56 ittf
57 find item in myarray myinstance
58 return item.a == this.maxAge
59 item
60 title array reduce statement
61 ittf
62 reduce item in myarray 0
63 return acc + item.a