** hello someone can help me I have a question as to how I can change the value of a variable that is outside all functions but only in a function I want to call it to change the value this is an example of what I want to do
var numero =1;
function cambiar(){
numero= 2
}
function llamar(){
numero= ...; //Aquí *
}
*
here is where I want to call the variable again and have the value of the previous function.