Imagine you are in need of a predetermined list of words (the focus here is not on the debate surrounding hard-coding).
Would you choose this approach:
var items = 'apple banana cherry'.split(' ');
Or do you favor this alternative:
var items = ['apple', 'banana', 'cherry'];