Posts by Tiago Dantas • 39 points
2 posts
-
-2
votes2
answers4059
viewsQ: How do I take the value of an input and put it into a variable?
I’m trying to make a registration form for a project and I don’t know much about JS, I need to take the value of the input after the person click the sign up button and send it to a variable. How do…
-
3
votes2
answers106
viewsQ: How do I get a variable in another method?
I declared a variable within the class Main and I want to use it within a method, as I put it there? public class Main { static Scanner entrada = new Scanner(System.in); Aluno aluno = new Aluno();…