Ask Sawal

Discussion Forum
Notification Icon1
Write Answer Icon
Add Question Icon

Mandal fsjxzd John




Posted Questions


No Question(s) posted yet!

Posted Answers



Answer


The only way to sign out of the Gmail app is to remove your entire account from your phone or tablet. However, you can do many of the same tasks through other actions. When you remove an account, it removes the account from all apps on the device.


Answer is posted for the following question.

How to sign out of gmail on phone?

Answer


Lowering blood pressure: According to LPI, several studies bear out the theory that drinking green tea can lower blood pressure This is true of


Answer is posted for the following question.

What are the benefits of twinings green tea?

Answer


  • The easiest way to switch branch on Git is to use the “git checkout” command and specify the name of the branch you want to switch to.
  • A quick way of switching branch on Git is to use the “git switch” command and specify the name of the branch you want to switch to.

Answer is posted for the following question.

How to navigate branches in git?

Answer


1
// Sending and receiving data in JSON format using POST method
2
//
3
var xhr = new XMLHttpRequest();
4
var url = url;
5
xhr.open(POST, url, true);
6
xhr.setRequestHeader(Content-Type, application/json);
7
xhr.onreadystatechange = function () {
8
    if (xhr.readyState === 4 && xhr.status === 200) {
9
        var json = JSON.parse(xhr.responseText);
10
        console.log(json.email + ,  + json.password);
11
    }
12
};
13
var data = JSON.stringify({email: hey@mail.com, password: 101010});
14
xhr.send(data);

Answer is posted for the following question.

How to how to send json in js with post (Javascript Scripting Language)


Wait...