check if key exist in local storage and set additional item to local storage code example
Example: how to check if local storage variable exists in javascript
if (localStorage.getItem("username") === null) {
//...
}
if (localStorage.getItem("username") === null) {
//...
}