const logOut = () => {
const user = JSON.parse(localStorage.getItem("User"));
users.push(user);
localStorage.setItem("Users", JSON.stringify(users));
console.log(users.length);
window.location = './form.html';
};
const logOutBtn = document.getElementById('log-out');
logOutBtn.addEventListener('click', logOut);
const password = document.getElementById('password');
const username = document.getElementById('username');
const loginUser = (username, password) => {
const user = {
userName: username.value,
password: password.value
};
localStorage.setItem("User", JSON.stringify(user));
};
const submitBtn = document.getElementById('submit-btn');
submitBtn.addEventListener('click', loginUser.bind(null, username, password));
В данный момент массив получается из одного юзера. При logout в массив перезаписывается новый юзер каждый раз. Как сделать, чтобы при нажатии на logout, в массив добавлялся новый пользователь и тот, кто был ранее?