quit button unity

Code Example - quit button unity

                
                        void quitGame() {
     Application.Quit();
 }
                    
                
 

exit button unity code

                        
                                void doExitGame() {
     Application.Quit();
 }
                            
                        
 

how to make a quit button in unity

                        
                                //need to build to work
    public void quitGame() 
    {
        Application.Quit();
    }