Posts by Mateus Lima • 29 points
3 posts
-
-1
votes2
answers224
viewsQ: Function values returning Undefined in Javascript
var const1 = function (a,b,c,d){ return (a*b+c-a)/d; { const1(10, 2, 2, 10, 2); console.log('a = ' + const1.a); console.log('b = ' + const1.b); console.log('c = ' + const1.c); console.log('d = ' +…
-
1
votes2
answers57
viewsQ: Why are div "social network" leaving the div when I use float
I would like to know why the div social networks leave the div "menu" whenever I use the float for images to go to the right side. html: <header id = "topo"> <div class = "menu"> <div…
-
0
votes5
answers153
viewsQ: Call the Java method
I’m doing some POO exercises and I can’t call the method ligar of my code. public class Telefone { public String modelo; public int numeros; public boolean antena; void status(){…