Which of the following is a boolean cookie attribute?
Which Rhino command quits Rhino environment?
When does JSNLog have server-side extensions?
Which method is used to obtain the "drawing context" object?
After traversing the stack, where does the flow go after reaching the window object?
Which of the following is not a property of the screen object in JavaScript?
The statement a===b refers to _________
What is the purpose of the []
parameter in the module definition?
When is JavaScript considered obtrusive?
What does the following script do?
<img id="myimg" src="orange.png" alt=""/>
<script>
var elements = document.getElementsByTagName("img");
for (var i = 0; i < elements.length; i++) {
elements[i].src = "apple.png";
}
</script>