Could Elastic search be used as a database?
Certainly. Whether this is a good idea or not is another question. ES is primary an index-and-search engine, not a database. It is not designed to be resilient, and it doesn't support transactions. If your ES index gets corrupted, then you rebuild it from the source database. If your ES index is the primary datastore, it's going to be on fragile ground, relatively speaking.
Why would I want to put documents in CouchDB then put the same documents in Elastic search then only query from Elastic search?
Because ES has vastly better search capabilities and performance, especially when it comes to ad-hoc queries and full-text searching. In fact, if you look at the CouchDB wiki page on full-text-search, it recommends using 3rd-party add-ons (one of which is ES).
If CouchDB's built-in search capabilities match your requirements, then you have no need for ES.