What is the purpose of the Response.clone() method in fetch?
Response.clone() is important because: 1) Response body can only be read once, 2) Creates a copy that can be read independently, 3) Essential when response needs to be processed multiple ways, 4) Commonly used with service workers and caching, 5) Preserves original response integrity, 6) Prevents 'already read' errors.