What is not a key event property?
How many properties are there in the window.performance
object?
Deduce the output of the following code:
<script>
var x=24;
{
var x=4;
}
document.write(x)
</script>
Which of the following is an appropriate event when the user clicks on an element?
Identify the component which helps us to navigate programmatically (like after a form submits).
What type of expression is new Point(2,3)
?
Evaluate the output of the following code-snippet?
<p id = "check" > </p>
<script>
document.getElementById("check").innerHTML = 7 == "abekus"
</script>
What is the correct syntax to change the text within a paragraph DOM object?
What will be the output of the following code?
<p id="abekus"></p>
<script>
var x;
document.getElementById("abekus").innerHTML = Boolean(x);
</script>
Which event is used to affect the content of an HTML element when the mouse is not placed over it?