index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Base
/
home
/
anon
/
js
/
array.js
blob: 2a643b96f37c5c0136f07560bc5570b42bec9dcb (
plain
)
1
2
3
4
5
6
7
var a = [1, 2, 3]; a[1] = 5; for (var i = 0; i < 3; ++i) { console.log(a[i]); }