// --> [["a", "b", "c"], ["A", "B", "C"], ["1", "2", "3"]]
var lstArrays = [
'a b c',
'A B C',
'1 2 3'
].map(function (s) {
return s.split(' ');
});