“Cómo repetir el mensaje con la misma variable en JavaScript” Código de respuesta

Cómo repetir el mensaje con la misma variable en JavaScript

var promtptAll = prompt('type any from rock, paper, scissors', '');
Super Stag

Cómo repetir el mensaje con la misma variable en JavaScript

let sign = prompt("What's your sign?");

if (sign.toLowerCase() == "scorpio") {
  alert("Wow! I'm a Scorpio too!");
}

// there are many ways to use the prompt feature
sign = window.prompt(); // open the blank prompt window
sign = prompt();       //  open the blank prompt window
sign = window.prompt('Are you feeling lucky'); // open the window with Text "Are you feeling lucky"
sign = window.prompt('Are you feeling lucky', 'sure'); // open the window with Text "Are you feeling lucky" and default value "sure"
Super Stag

Respuestas similares a “Cómo repetir el mensaje con la misma variable en JavaScript”

Preguntas similares a “Cómo repetir el mensaje con la misma variable en JavaScript”

Más respuestas relacionadas con “Cómo repetir el mensaje con la misma variable en JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código