So I am creating an object in a cell in a quarto-file like this:
```{ojs}
{
{
const persons = {
mike: {
age: 32,
height: 180,
},
anna: {
age: 32,
height: 175,
},
};
}
}
```
I then want to use it in another cell like this:
```{ojs}
console.log("persons: ", persons)
```
Yet I get this error:
I'm not really sure how I could use the data in a subsequent cell...