I have an array in js with only an id and a description, for example:
var variavel = [{id: 1, descrição: 'Brasil'},
{id: 2, descrição: 'Brasil'},
{id: 3, descrição: 'Chile'},
{id: 4, descrição: 'Chile'},
{id: 5, descrição: 'Chile'},
{id: 6, descrição: 'Argentina'}];
But I would like to concatenate the id and leave the description only, basically this way:
var variavel = [{id: '1,2', descrição: 'Brasil'},
{id: '3,4,5', descrição: 'Chile'},
{id: '6', descrição: 'Argentina'}];
How can I do this? Would a loop/for
solve?
NOTE: I do not use / can use Jquery in this project