摘要:
C#: Java: JS: 阅读全文
摘要:
var text = 'uololooo'; // With ES6 [...text].forEach(c => console.log(c)) // With the `of` operator for (const c of text) { console.log(c) } // With E 阅读全文