-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
19 lines (17 loc) · 862 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function positions(firstPlace, secondPlace, lastPlace)
{
let nome = [firstPlace, secondPlace, lastPlace]
if(lastPlace == "Daniel"){
console.log(`1º Colocado: ${firstPlace}`)
console.log(`2º Colocado: ${lastPlace}`)
return console.log(`3º Colocado: ${secondPlace}`)
}else if(secondPlace == "Daniel"){
console.log(`1º Colocado: ${secondPlace}`)
console.log(`2º Colocado: ${firstPlace}`)
return console.log(`3º Colocado: ${lastPlace}`)
}else(firstPlace == "Daniel")
console.log(`1º Colocado: ${firstPlace}`)
console.log(`2º Colocado: ${secondPlace}`)
return console.log(`3º Colocado: ${lastPlace}`)
}
positions("Rafael","Daniel","Manoel")