Which operator would you use to select packets where the HTTP method is either GET or HEAD?

Last Updated :
Discuss
Comments

Which operator would you use to select packets where the HTTP method is either GET or HEAD?

http.request.method == "GET" or "HEAD"

http.request.method in {"GET","HEAD"}

http.request.method == {"GET","HEAD"}

http.request.method && "GET","HEAD"

Share your thoughts in the comments