What is the use of “docker wait” commands? with example and image

The wait command will wait until a container stop, then print their exit codes.
How to check:
Start a container
docker run –name bitto httpd
Run docker wait
docker wait bitto
Kill the container from another terminal and check the return value in actual terminal
docker kill bitto