challenge-algorithms-Ana-Ca.../01-greeting/index.html
Heraldo Ecard Roque Filho ac28a3158f adicionado desafios
2021-08-18 18:00:43 -03:00

30 lines
775 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
/*
Faça um algoritmo que retorne a string composta por Hello e o nome passado
*/
function greet(name) {
// implementar logica aqui
return ""
}
// Resultados esperados
console.log(greet("Maria"), "Hello Maria") // Hello Maria
console.log(greet("Alvin"), "Hello Alvin") // Hello Alvin
console.log(greet("Pedro Lucas"), "Hello Pedro Lucas") // Pedro Lucas
</script>
</body>
</html>