I am trying to fetch NAME which is in SKILLS.
For that I use filter for initial level sorting.Means I am able to sort rows but how do I fetch name?
let r = this.topics.filter(a => {
console.log('a is : ', a)
return a.Skills.name
})