How is javascript different from java?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More JavaScript Interview Questions

What is the scope variable in javascript?

0 Answers  


Is it possible to use javascript to change the meta-tags of the page?

0 Answers  


Write a javascript program to make a simple calculator

11 Answers   Anand Group, TCS,


How to modify the url of the page without reloading the page?

0 Answers  


Can you assign an anonymous function to a variable and pass it as an argument to another function?

0 Answers  






How to disable an html object ?

0 Answers  


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; }

0 Answers  


How to remove duplicate values from a javascript array?

0 Answers  


What is a closure and how do you use it?

0 Answers  


What is the best ide for javascript development?

0 Answers  


In a pop-up browser window, how do you refer to the main browser window that opened it?

0 Answers  


If we want to return the character from a specific index which method is used?

0 Answers  


Categories