[GET] https://mmouhib.github.io/hello-world-api/src/hw.json
const Http = new XMLHttpRequest();
const url = 'https://mmouhib.github.io/hello-world-api/src/hw.json';
Http.open('GET', url);
Http.send();
Http.onreadystatechange = (e) => {
ob = JSON.parse(Http.responseText);
};
{
"lang": "C#",
"hw": [
"class HelloWorld",
"{",
" static void Main()",
" {",
" System.Console.WriteLine(\"Hello, World!\");",
" }",
"}"
],
"release_year": "2000"
}