What does window.print() do in Javascript?


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

Post New Answer

More JavaScript Interview Questions

What output will the program produce: System.out.println(x+"+"+y+"="+(x+y));

1 Answers  


How to create function in JavaScript?

0 Answers  


How generic objects can be created?

0 Answers  


Are there any training Institutions on iphone Automation testing?

0 Answers  


What is use of settimeout function in javascript?

0 Answers  






What are the four types of javascript objects?

0 Answers  


What is eval() in javascript?

0 Answers  


Write a program to check whether a given number is a palindrome or not?

13 Answers  


What is use of object as function?

0 Answers  


What is Browser Object Model?

0 Answers  


Explain javascript closures by example.

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  


Categories