Skip to content

Instantly share code, notes, and snippets.

@fabio-filho
Created March 22, 2023 23:03
Show Gist options
  • Save fabio-filho/13f4d79c8c9b80a5119536252cd69d5e to your computer and use it in GitHub Desktop.
Save fabio-filho/13f4d79c8c9b80a5119536252cd69d5e to your computer and use it in GitHub Desktop.
Mentoria - Boilerplate JS
<!DOCTYPE html>
<html>
<body>
<button type="button" onclick="executar()">Executar</button>
<script>
function executar(){
const produto = prompt("Digite o produto")
alert('O produto é: ' + produto)
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment