This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
The arguments.length property returns the number of arguments received by the function:
function myFunction(a, b) { return arguments.length; } document.getElementById("demo").innerHTML = myFunction(4, 3);