I need to know how to clear the data from the object which is already assigned with some value in it.
Example
var myObject : String = "some_data"
myObject.clear() // I need to clear the information present in it.
::myObject.isInitialized // It must return false
Is there any way to do it?