check if gameobject exists unity

Code Example - check if gameobject exists unity

                
                        if (GameObject.Find("Name Of GameObject") != null)
{
    // GameObject exists
}
                    
                
 

unity csharp check how many of an object exists

                        
                                TotalAmount = FindObjectsOfType<Object>().Length;