What is Javascript namespacing? How and where is it used?
Which built-in method returns the string representation of the number’s value?
How to use one javascript function for multiple input fields?
what are the differences between as2 and as3?
In javascript chained select menus are available.first select menu is worked and others are disabled.when we select any one option then the next select menu will worked having option releated to selcted in first select menu.How it possible? what is the coading of this programme?
Is it possible to use javascript to change the meta-tags of the page?
Write a JavaScript function which can take any number of strings as arguments and outputs them as a single concatenated string.
Which built-in method returns the character at the specified index?
How to add new elements dynamically?
what is eval pls breif information send me
What is the difference between undefined and not defined in JavaScript?
What are arrays 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; }