I feel uncomfortable asking, but how do I convert an array of words to make a sentence ?
I keep finding the other way round.
Something like:
Just join the elements of the array into a string using a space as a separator:
var sentence = a.join(" ");
https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/join
This doesn't need jquery. Javascript has a very simple way of doing this with the join function:
a.join(" ");
Do you mean something like?
arr.join(" ");