element.innerHTML = `
<div id="followers"></div>
<div id="company"></div>
<div id="location"></div>
<div id="email"></div>
`
cardbody.appendChild(element);
const allDatas = [data.followers,data.company,data.location,data.email];
const allIds = ["followers","company","location","email"];
allDatas.forEach((data,index) => {
const element = document.getElementById(allIds[index]);
if(data === null){
element.textContent = "Veri Bulunamadı";
} else{
element.textContent = data;
}
})