Posts by Bruno Moreira • 31 points
2 posts
-
2
votes2
answers997
viewsA: console.debug is not working in Chrome
Use console.log. console.debug is an alias of console.log.…
-
1
votes1
answer127
viewsA: Error in Hangman Game
You have some "details" wrong beyond the two you mentioned. For example, var erro = [] erro.length = 6; it is incorrect to modify the property length of a Javascript array, at least in your case,…