let str = 'guitar'; console.log('The original string is: ' + str); let splitStr = str.split(''); // ["g","u","i","t","a","r"] let ...
確定! 回上一頁