async function sendMe() { let res = await fetch("/test", {method:"POST"}); let r = await res.json(); console.log(r.results[0]["name"]); }