js陣列反轉

伤心木乃伊發表於2024-05-30

'abc def ghi 123'.split(' ').forEach((a)=>{
  console.log(a.split('').reverse().join(''));
})

相關文章