What are the uses of javascript in web page designing?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between script type and the script language attributes?
Which is better for or foreach in javascript?
Why is java better than javascript?
What can be the challenges during testing a program or a system?
What is the use of a boolean object in javascript?
How can you identify a function?
Is javascript becoming obsolete?
What are the data types available in javascript? Explain
What is array in javascript?
how to write frame work Architecture in QTP
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; }
Is JavaScript a true OOP language?