I have an array of users and want to set age = 0 if there´s no age present
const [users, setUsers] = useState([{name: 'john', age: 40}, {name: 'mary'}, {name: 'mike'}])
how can I do this? (I don´t have access to the database to set all users age to 0 if there´s no age set)