# Tag
[JSP Standard Tag Library](#)
The `` tag is used to remove a variable, and you can specify the scope of this variable. If not specified, it defaults to the scope where the variable first appeared.
This tag is not particularly useful, but it can be used to ensure that JSP completes cleanup work.
### Syntax
```jsp
<c:remove var="" scope=""/>
### Attributes
The `` tag has the following attributes:
| **Attribute** | **Description** | **Required** | **Default Value** |
| --- | --- | --- | --- |
| var | The name of the variable to be removed | Yes | None |
| scope | The scope to which the variable belongs | No | All scopes |
## Example
```jsp
c:remove Tag Example
salary variable value:
Value after deleting salary variable:
The result is as follows:
salary variable value: 4000
Value after deleting salary variable:
* * JSP Standard Tag Library](#)