i have this object array:
let arr = [
{
'pippo': '1',
'descrizione': 'ciao'
}
];
and i want convert "1" to 1 by key:
let arr = [
{
'pippo': 1,
'descrizione': 'ciao'
}
];
any solution?
br Max