Arrays are confusing me when
cutting them
…
var words = ["one", "two", "three", "four", "five"] debug(words); var cut = words.splice(1, 2); debug(typeof(cut) + " => " + cut); var cut = words.splice(0, 1); debug(typeof(cut) + " (" + typeof(cut[0]) + ") => " + cut); debug(words);