Answers for "fake online rest api xml"

2

dummy api json

var xhr = new XMLHttpRequest();
xhr.open("GET", "https://reqres.in/api/products/3", true);
xhr.onload = function(){
    console.log(xhr.responseText);
};
xhr.send();
Posted by: Guest on April-14-2020
0

fake online rest api xml

<x><value>false</value></x>
Posted by: Guest on January-18-2021

Code answers related to "BASIC"

Browse Popular Code Answers by Language