repo.or.cz
/
tinyjs-rewrite.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
formatting 90% done; encapsulated everything in the TinyJS namespace, and renamed...
[tinyjs-rewrite.git]
/
.svn
/
pristine
/
03
/
0313342e94d79fb8d4f40a25a40513b6e57076d0.svn-base
blob
550bf326616160575bc45763e4ecbfb7d1569877
1
// test for array remove
2
var a = [1,2,4,5,7];
3
4
a.remove(2);
5
a.remove(5);
6
7
result = a.length==3 && a[0]==1 && a[1]==4 && a[2]==7;