・これをjs標準の機能で行う場合は次のように書く。「document.querySelectorAll(~).forEach(function(){});」
・lengthを見て単純なforで回すというやり方もできるが、forEachを使える場合はこちらを使いたい。
使い方
document.querySelectorAll(".tags a").forEach(item => {
console.log(item.innerText);
});
参考
https://thr3a.hatenablog.com/entry/20190304/1551701684