Files
JavaScript-from-Beginner-to…/Chapter 15/Exercise 15.1.txt
T
2021-11-25 20:25:10 +05:30

19 lines
309 B
Plaintext
Vendored

[
{
"name": "Learn JavaScript",
"status" : true
},
{
"name": "Try JSON",
"status" : false
}
]
const url = "list.json";
fetch(url).then(rep => rep.json())
.then((data) => {
data.forEach((el) => {
console.log(`${el.name} = ${el.status}`);
});
})