i am using javascript to call a url. but is is giving me error in chrome console (F12)
please help me.
i expected a result
JavaScript
x
4
1
fetch(url).than((res) => {
2
console.log(res.JSON())
3
})
4
but got an error instead
Advertisement
Answer
Its a typo.
Simply use then
instead of than
and .json()
instead of .JSON()
JavaScript
1
4
1
fetch(URL).then(res => {
2
console.log(res.json())
3
})
4
learn more here