var bal = 0;
fetch('url', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
userid: userid
})
}).then(res => res.json()
).then(data => bal = data.bal);
console.log(bal);
var bal = 0;
fetch('url', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
userid: userid
})
}).then(res => res.json()
).then( (data) => {
bal = data.bal;
// здесь bal уже с новым значением,
console.log(bal);
});
// здесь bal все еще со старым значением.
console.log(bal);