0

Does anyone know how to do this? I have tried everything I could think of in terms of how it could be stored as a variable, but I don't know what to do.

1 Answers1

0

The title of a column is shown as its key name. For example, this: | id | value | | -- | ----- | | 1| 6 | is shown as this:

{
  id: 1,
  value: 6
}

The column name in this case is value. All you have to do is just put "value" (or whatever column name you're using) next to where you're showing the cell content.

wutadam
  • 73
  • 7