Skip to content
Advertisement

functions deleting the paint canvas

I would really appreciate If someone could figure out what is wrong with my functions. I’m working on this simple paint program and I have Undo and Clear buttons. Undo is supposed to clear the last drawn line (the function deletes the last element of the array since the array consist of all the drawn lines on the canvas) and Clear just takes the canvas back to It’s formal state (makes the board completely white). But every time I put any of those functions in the code my canvas just deletes Itself and I can’t seem to figure out what’s wrong. The function names are clear_canvas and undo_last. Any tips or solutions on how to fix or make another working example?

JavaScript

Advertisement

Answer

You should use console.log. You should also be getting an error that helps identify your issue when you run the script.

Check this line in undo_last

JavaScript

It should be

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement