Reading and storing value from the pin of the bolt into variable

i am calling this function onload().i want to read the data from the pin 5 and store it in a variable.in this code i am storing in it variable p. how to store the data of pin-5 in a variable
function new_func(5l){

var value = 5
var p = “/digitalRead?pin=”+value;

Instead of putting the function in body tag use this

var pinXValue =0document.body.onload =function () {
   // get data here
  pinXValue = fetchedValue;
}
</script>```

my doubt is to get data from the pin

Ah, you need to make a http request, use this https://developer.mozilla.org/en/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest