How can I set a defined variable to NULL?
I need to be able to reset a variable (specifically a UserSession variable/property) to NULL so that the behavior of my mashup is predictable.
I've tried:
newObject.username = NULL;
But this syntax throws a runtime error that "NULL" isn't defined.
Thanks for the help.

