File: test2.doctest

package info (click to toggle)
htmlunit-core-js 2.8-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 5,804 kB
  • ctags: 10,088
  • sloc: java: 75,059; xml: 889; sh: 14; makefile: 11
file content (18 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
js> a = []

js> a[0] = 10
10
js> a[1] = 11
11
js> a[3] = 13
13
js> a[4] = 14
14
js> a[5] = 15
15
js> a.reverse()
15,14,13,,11,10
js> a.reverse()
10,11,,13,14,15
js> a.concat([16,17])
10,11,,13,14,15,16,17