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
/
db
/
dbfd9e15d1a164edc3d50fe278060a81e41afc59.svn-base
blob
351fcc22d0aeaef972c1c783336acfefd4d4f1ac
1
// Array length test
2
3
myArray = [ 1, 2, 3, 4, 5 ];
4
myArray2 = [ 1, 2, 3, 4, 5 ];
5
myArray2[8] = 42;
6
7
result = myArray.length == 5 && myArray2.length == 9;