I have an array
const array =[10,20,30]
i want to display these values in table column as 10,20,30 under column header "number".
Note: array elements will be dynamic.
try this
const array =[10,20,30].join(', ')