function titleCase(str) { str = str.toLowerCase().split(' '); // will split the string delimited by space into an array of words for(var i = 0; ...
確定! 回上一頁