Data Entry:
const info = [
{
type: 'Electronics',
category: 'cellphone',
price: 800,
profit: 50,
},
{
type: 'Clothing',
category: 'shoes',
price: 100,
profit: 30,
},
{
type: 'Electronics',
category: 'tablet',
price: 500,
profit: 100,
},
]
The formatted information should be as follows:
{
"name": "info",
"children": [
{
"name": "Electronics",
"children": [
{
"name": "cellphone",
"children": [
{
"name": "price",
"value": 800
}
]
},
{
"name": "tablet",
"children": [
{
"name": "price",
"value": 500
}
]
}
]
},
{
"name": "Clothing",
"children": [
{
"name": "shoes",
"children": [
{
"name": "price",
"value": 100
}
]
}
]
}
]
}