How to create function in JavaScript?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of a map object in javascript?
can any one tell me the syllebus for java certification
Name the types of functions.
How to open a window with no toolbar, but with the location object?
What is the difference between ‘let’ and ‘const’?
What is jscript used for?
What is the role of break and continue statements?
Name the different types of pop up boxes in Javascript?
How do you check if an object is an array or not?
How many data types are there in javascript?
What are the ways to define a variable in javascript?
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; }