https://www.wantedly.com/companies/company_1071330/post_articles/865343
表示される文字(ある程度整形されている)
const span = document.createElement('span')
span.innerText = ' aaaaa'
console.log(span)'aaaaa'要素が持つ文字(htmlに記述されているそのまま取得)
const span = document.createElement('span')
span.textContent = ' aaaaa'
console.log(span)' aaaaa'注意
textNode はtextContentしか持たない