When using methods / functions in JavaScript, as in other programming languages we can pass parameters
EXAMPLE
function saludar(name){
console.log("Hola: "+name)
}
Here we send the function call
saludar("SO en español")
The res...
asked by
08.10.2018 / 04:26