removeGlobalValue()

ICE Data Services -

removeGlobalValue()

 

removeGlobalValue( varname )

 

  • varname: Name of global variable to remove.

 

Removes a global variable from the global variable pool.

 

Example: 

var vValue = getGlobalValue("mycounter");

if (vValue != null) {
  removeGlobalValue("mycounter");
}