web problem, JavaScript language for the Web

Hi,
The GET method cannot have the body. We use the url in order to send any data to the get request.
const url='http://example.com/account/accountID:123/;
All you have to do is delete the body in and replace the url with this url.
web problem, JavaScript language for the Web Explain what is wrong with the following code and...
!! Express.js quesiton !! I just started studying about Node.js with Express.js framework. I tried so hard but I have no idea how to solve these questions... I hope you guys can help me to solve those questions. Thank you :) This is my problem : DELETE /book?title=:book_title always returns 204 Not Content status code even if the book is not present in the datastore. no response body. GET /books returns 200 Success status code. returns list of all books....