How is it possible to get the total number of arguments that are passed to a function?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More JavaScript Interview Questions

What is the use of math object in javascript?

0 Answers  


What is called variable?

0 Answers  


just for testing

0 Answers   IBM,


Event bubbling and Event Capturing in JavScript?

0 Answers  


What is the difference between push() and concat() in javascript?

0 Answers  


Does spacing matter in javascript?

0 Answers  


What is let keyword in typescript?

0 Answers  


What is difference between arrow function and normal function?

0 Answers  


What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }

0 Answers  


What does polyfill mean?

0 Answers  


To put a "close window" link on a page ?

0 Answers  


How much time it will take to learn javascript?

0 Answers  


Categories