Check out example codes for "how to disable a gameObject unity c#". It will help you in understanding the concepts better.
Code Example 1
public GameObject gameObj;//the gameobject you want to disable in the scene
gameObj.SetActive(true); //set the object to active
gameObj.SetActive(false);//set the object to disable
gameObject.SetActive(true);//change the state of the current gameobject to active
gameObject.SetActive(false);//change the state of the current gameobject to disable
Learn ReactJs, React Native from akashmittal.com