HomeToolsAbout

Arguments

What is it

Array-like object accessible inside functions that contain the values of the arguments passed to that function.

function someFunction(a, b, c) { console.log(arguments); } someFunction(1, 2, 3); // { 0: 1, 1: 2, 2: 3 }
AboutContact