function getInput () {
return Math.floor(Math.random() * 5) + 1
}
const results = []
for (let i = 1000; i--;) {
let result
switch (getInput()) {
case 1:
result = 'ok'
break
case 2:
result = 'nice'
break
case 5:
result = 'very cool'
break
default:
result = ':('
}
results.push(result)
}
for (let i = 1000; i--;) {
results.push({
1: 'ok',
2: 'nice',
5: 'very cool'
}[getInput()] || ':(')
}
const obj = {
1: 'ok',
2: 'nice',
5: 'very cool'
}
for (let i = 1000; i--;) {
results.push(obj[getInput()] || ':(')
}