Guys my JavaScript code is not working please help me.
fetch('/readme.txt')
.then(response => response.text())
.then(data => conole.log(data));
Answers
Answered by
3
The Problem Is You have written conole instead of console .
fetch('/readme.txt').then(response => response.text()).then(data => console.log(data));
Mark me as the brainliest
Similar questions