day-8, level 3 exercises q2 #666
Answered
by
anchalpaswan
KhuramShahzad-5335
asked this question in
Q&A
-
i need help with the sign in and signup function for day8, level3,exercise q2, |
Beta Was this translation helpful? Give feedback.
Answered by
anchalpaswan
Feb 20, 2023
Replies: 1 comment 1 reply
-
function signUp(username, email, password) {
} function signIn(email, password) { |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
KhuramShahzad-5335
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
function signUp(username, email, password) {
}
function signIn(email, password) {
// Find the user with the given email and password
const user = users.find(user =>…