Deletes a named variable.
Executed
Client-side or server-side. The variable you want to delete must be available in the same scope.
Arguments
Argument | Type | Description |
---|---|---|
name | String, required | The name of the variable to delete |
Example
In this example the variable called myVariable will be deleted.
function (helper) {
helper.deleteVariable('myVariable');
}
Last modified on March 20, 2024