let bookId = 0;
function genNewBookId() {
bookID = 1
bookID++;
return bookId;
}
console.log(genNewBookId());