Posts by Heitor Heitor Heitor • 31 points
3 posts
-
1
votes1
answer37
viewsQ: this is assuming the value of Window
I don’t know what’s wrong with this code. Inside the function builder EvilCircle, the this works well, but in EvilCircle.prototype.draw doesn’t work. It looks like it turns into Window. function…
-
1
votes1
answer38
viewsQ: What is it for / Text / in Javascript
I was seeing if there was another kind of comment in Java besides the // or /* */. That’s when I realized, when I took out the asterisk of /* */ did not return an error, returned exactly what I had…
javascriptasked Heitor Heitor Heitor 31 -
1
votes3
answers44
viewsA: I want the main tag not to be affected by the margin
You put margin on the dial p. Instead of: p { margin-left: 250px; margin-right: 250px; } Replace to: p { margin: 0; }…