0 votes
in JavaScript by
How can you get the total number of arguments passed to a function?

1 Answer

0 votes
by
Using arguments.length property, we can get the total number of arguments passed to a function. For example −

function func(x){

   console.log(typeof x, arguments.length);

}

func();                //==> "undefined", 0

func(1);               //==> "number", 1

func("1", "2", "3");   //==> "string", 3

Related questions

0 votes
asked Dec 31, 2020 in Python by SakshiSharma
0 votes
asked Oct 19, 2019 in JavaScript by SakshiSharma
...