19 lines
385 B
Plaintext
19 lines
385 B
Plaintext
[
|
|
{
|
|
"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}`);
|
|
});
|
|
})
|