what is the difference between window & document in javascript?
No Answer is Posted For this Question
Be the First to Post Answer
If an array with name as "names" contain three elements, then how will you print the third element of this array?
what is service now ticketing tool how it works
Is an interface is a class?
Is javascript harmful?
How can I define an array in JavaScript?
4 Answers Accenture, Exevo, OM IT Solutions,
Do I need to install javascript?
Name the two functions that are used to create an HTML element dynamically?
Hi all, I got a job in Bangalore even though it's recession time. They have said my project will involve Java, Ruby on Rails, Ajax and they also said Web Services (which i have always wanted to try) and some stuff I have not much exposure like REST, mashups and Struts. Can anyone tell me if there are some good training or conferences to get to speed with these technologies. I need to do really good in my job. Thanks, Vaibhavi
Why is my javascript function not defined?
How to get value from a textbox?
What is meant by object oriented programming?
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; }