Headers.delete()
The delete() method of the Headers
interface deletes a header from the current Headers object.
This method throws a TypeError for the following reasons:
- The value of the name parameter is not the name of an HTTP header.
Syntax
delete(name)
Parameters
name- : The name of the HTTP header you want to delete from the
Headersobject.
- : The name of the HTTP header you want to delete from the
Return value
None (undefined).