R
Q. Example of arrays in Javascript. Find output of below code
<script> var firstNames = ["c", "c++", "java", "python", "perl"]; for (var i = 0; i < firstNames.length; i++) { if(i%2===0) continue; document.write(i); } </script>
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which method returns the string starting at the specified position?
Q. Which of the following is the correct statement of WHILE loop start?
Q. Which of the following is a web application API framework?
Q. What is the purpose of the function parameter filetype?
Q. When does one use the event ready?
Q. A proper scripting language is a
Q. Which of the following POSIX signals generate events?
Q. The statement a===b refers to
Q. What will be the output of the following JavaScript code?
Discusssion
Login to discuss.