How can I use the body key in the fetch at the same time as email and phone_number?
fetch('API', {
method: 'POST',
body: JSON.stringify({
email: email,
phone_number: phoneNumber,
password: password,
}),
})
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
How can I use the body key in the fetch at the same time as email and phone_number?
fetch('API', {
method: 'POST',
body: JSON.stringify({
email: email,
phone_number: phoneNumber,
password: password,
}),
})