Views
fetch("https://script.google.com/macros/s/AKfycbwJbzQHn1j4ugNHDMOdgWX016fmTCrPHyZ7yhU5yGTeL-cdJx9iA3IfJC-s5TKPjZFy/exec",{
method:"POST",
body:JSON.stringify({
goal:goal,
bw:bw,
oneRM:oneRM
})
})
.then(res=>res.text())
.then(data=>output.innerHTML=data);
OTO2