1
I thought of this code to show the reverse order. It worked, but I was wondering if there is another possible way.
function inversa(...ray){
console.log(`Os elementos do array são: ${ray.join(', ')}.`)
if(ray.length == 6){
let inverso = ray.sort((num, num2) => num2 - num)
return `A ordem inversa da array é: ${inverso.join(', ')}.`
}else
return 'A quantidade de números está errada.'
}
console.log(inversa(1,2,3,4,5,6))