I'm trying to get information from a table I have populated into. I got this code :
> dataHtml += `<tr onclick="getRowDetails(this)" class='accordion'
> id="accordion"> onclick="newAssign(this)"><td>${course.Year}</td><td>${course.Semester}</td><td>${course.Route}</td><td>${course.CourseName}</td></tr>`;
and once the row is clicked this function is triggered:
function getRowDetails(value) {
console.log("showing this")
console.log(value)
}
and once I click on the row i see the following information:

My question is how do I approach this if I want to show the value "Big Data" only?
thanks !!
valuecontains HTML element, than you can simply select it's child:value.children[3]removeChild()