Posts by Lucas Farias Rodrigues • 95 points
2 posts
-
7
votes1
answer84
viewsQ: Doubt about prototype
I have a basic question in prototype in Javascript, is the following: function MeuObjeto() {} obj1 = new MeuObjeto MeuObjeto.nome = "Lucas" console.log(obj1.nome) Upshot: Undefined I am in doubt as…
-
2
votes1
answer1286
viewsQ: How to do after user use input not break line
Turns out I want to use an input, ie put a value but after hitting enter not break the line but continue in the place where I wrote the value, I have no idea how to do with the python input, I tried…