List few difference between java and javascript?


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

Post New Answer

More JavaScript Interview Questions

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  


What is console.time() and console.timeend()? What is its syntax, and why is it used?

0 Answers  


what is onfocus and onblur events in java script?

2 Answers  


How to force a page to go to another page using javascript ?

0 Answers  


How do I install javascript?

0 Answers  






What is null in js?

0 Answers  


What does 3+4+"7" evaluate to?

0 Answers  


Write a way by which you can do something on the close of the window ?

0 Answers  


What does _ mean in javascript?

0 Answers  


Is everything in javascript asynchronous?

0 Answers  


How do you assign object properties?

3 Answers   Satyam,


How to include the HTML tag inside the javascript tags?

5 Answers   TCS,


Categories