//
fetch('https://jsonbox.io/box_f7b6c58358498848a89c')
.then(res => res.json())
.then(json => {
let text = ''
json.forEach(v => {
text += `${v.name}は${v.age}才です。`
})
document.getElementById('r').textContent = text
})
// => Satoは18才です。Tanakaは27才です。