You can use Math.max for the shortest solution. Here is the js code:
function findBiggestNum(arrNum) {
[num1,num2,num3]=arrNum;
let maxNum = Math.max(num1, num2, num3);//use Math.max for the shortest solution
console.log(maxNum);
}
findBiggestNum([130, 5, 99]);