This pattern is quite common; I've seen it in a few places including the jQuery source code:
var arr = "word1 word2 word3".split(" ");
as an alternative to the 'normal' methods of array initiliasation:
var arr1 = [ "word1", "word2", "word3" ];
var arr2 = new Array( "word1", "word2", "word3" );
What are the benefits of the string-splitting approach?