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
/
e7
/
e7f32c6f60b7de28742a11815e3c0ab72eec6737.svn-base
blob
927ec6e75db08df1b4d8c0979386311ef15315ef
1
// test for string split
2
var b = "1,4,7";
3
var a = b.split(",");
4
5
result = a.length==3 && a[0]==1 && a[1]==4 && a[2]==7;