Why is it called javascript?
No Answer is Posted For this Question
Be the First to Post Answer
write a programme to solve a formula for compound interest using html tags. I want to know how a formula containing degree (raise to the power) can be solved.
What is rest parameters in javascript?
What output will this program produce System.out.println(x+"+"+y+"="+(x+));
What are the four basic data structures in javascript?
How generic objects can be created?
What is the difference between innerhtml and append() in javascript?
What is the method for reading and writing a file in javascript?
What is question mark in javascript?
What would be the result of 2+5+”3″?
How can you create an Array in JavaScript?
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; }
Explain function hoisting in javascript?