I need help formatting this response. Below is a response that I'm getting from a server. I'd like to write out a static version of this but I'm struggling with the formatting of how to write it.
Response I want to write:
[
category1: [{...},{...}],
category2: [{...},{...}],
category3: [{...},{...}]
]
My attempt:
const myArr = [
"category1": [{...},{...}],
"category2": [{...},{...}],
"category3": [{...},{...}]
]
What is it that I'm doing wrong here? Thank you! Apologises for the n00b question.
{category1: [...], ...}.