I'm afraid you will have to give us more information about the variable. If the variable is is used in your app as numeric and in one page then use
UpdateContext({varForm:0}); UpdateContext({varForm:Value("")})
or if the variable is in text format and used in one screen
UpdateContext({varForm:" "}); UpdateContext({varForm:""})
or in case the variable is global used in multiple pages set as text
Set(varForm," "); Set(varForm,"")
or in case the variable is global used in multiple pages set as numeric
Set(varForm,0); Set(varForm,Value(""))