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

1 Answer

0 votes
by
Using typeof operator, we can get the type 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 Oct 14, 2021 in Python by rajeshsharma
0 votes
asked Mar 23, 2021 in JavaScript by sharadyadav1986
...