JS dividido texto em espaços
var string = "text to split";
var words = string.split(" ");
Rich Rhinoceros
var string = "text to split";
var words = string.split(" ");