This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
Finding the largest number.
function findMax() { let max = -Infinity; for(let i = 0; i < arguments.length; i++) { if (arguments[i] > max) { max = arguments[i]; } } return max; } document.getElementById("demo").innerHTML = findMax(4, 5, 6);
If a function is called with too many arguments (more than declared), these arguments can be reached using the arguments object.