Untag a object via script

There is any way to untag a object via script. I have an object tagged as Vehicle and I want it to be untagged once a script says it.

Hope you could help me, lot of thanks

gameObject.tag = “Untagged”;

gameObject.tag = null;

…will actually remove the tag completely.