unity how to end a game with esc

Code Example - unity how to end a game with esc

                
                        void Update()
{
    if (Input.GetKey(KeyCode.Escape))
    {
        Application.Quit();
    }
}