avatar
change object in array and trigger Javascript
let options = [];
const tag = {
    id: 0,
    name: <Your Tag Name>,
};
options.push(tag);
options.forEach((item, index) => {
    item.id = index + 1
});
You need to login to do this manipulation!