function add(name) { var id = arr.length + 1; if (arr.filter(item=> item.username == name).length == 0){ arr.push({ id: id, username: name }); } }