DEV Community

Discussion on: Why won't anything draw on my canvas?

Collapse
 
ducaale profile image
Mohamed Dahir

In that case, you should be using innerHTML and not document.writeln()

document.getElementById('some-id').innerHTML += color;
Enter fullscreen mode Exit fullscreen mode