Computer Science, asked by VgTheCoder, 9 months ago

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 sg249344
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