What is the difference between innerHTML and innerText?
No Answer is Posted For this Question
Be the First to Post Answer
what will happen and why if i will acess the methods of superclass which is declared as private by a object of same subclass.
What does the delete operator do?
List some data types supported by javascript?
Is javascript array dynamic?
What is null in programming?
How to make a array as a stack using javascript?
What is the importance of <script> tag?
write a programme to solve a formula for compound interest using html tags. I want to know how a formula containing degree (raise to the power) can be solved.
What is difference between javascript and jscript?
What is the difference between undefined value and null value?
What does parse Query String return 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; }