Google News
logo
PouchDB - Quiz(MCQ)
What is the syntax for creating a new user with the PouchDB 'Authentication' plug-in?
A)
signup(username, password)
B)
create(username, password)
C)
newUser(username, password)
D)
addUser(username, password)

Correct Answer :   db.signup(username, password)


Explanation : The syntax for creating a new user with the PouchDB “Authentication” plug-in is “db.signup(username, password)”.

Advertisement