This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //adding a new shelf | |
| app.post("/shelf", async(req,res)=>{ | |
| const shelfTitle = req.body.shelfTitle | |
| const shelfLanguage = req.body.shelfLanguage | |
| const bookTitle= req.body.bookTitle | |
| const earliestPublicationYear = req.body.earliestPublicationYear | |
| ... |
NewerOlder