Google News
logo
PouchDB - Quiz(MCQ)
Which of the following is not a method for querying data in PouchDB?
A)
find()
B)
insert()
C)
query()
D)
allDocs()

Correct Answer :   db.insert()


Explanation : The “db.insert()” method is not used for querying data in PouchDB, but rather for inserting new documents into the database.

Advertisement