Skip to content

Instantly share code, notes, and snippets.

@mrandri19
Created November 18, 2015 15:15
Show Gist options
  • Select an option

  • Save mrandri19/544ee66ac94d94661c4f to your computer and use it in GitHub Desktop.

Select an option

Save mrandri19/544ee66ac94d94661c4f to your computer and use it in GitHub Desktop.
# Compito per il 19/11
Un quiz con le seguenti caratteristiche:
- Punteggio
- Dire (usando `console.log()` o `alert()`) se la risposta e' giusta
- Almeno 3 domande
## Prompt()
```js
prompt();
//vi appare sullo schermo un box dove scrivere e dei bottoni con ok e cancel
//se fate ok propmt() restituisce cio che avete inserito nel box
```
```js
var risposta = prompt("Come ti chiami?");
console.log(risposta);
//Nel mio caso (e di Rapa) sara' Andrea
```
---
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment