What are the events generated by Node objects called?
What is the result of the expression var1 && var2, if var1 = true and var2 = false?
The localStorage and sessionStorage objects belong to which object in the browser?
Which of the following snippet gives the current time?
What is the purpose of the advanced mode in the Closure Compiler?
What is the output of the following code?
<p id="abekus"></p>
<script>
var x = 0;
document.getElementById("abekus").innerHTML = Boolean(x);
</script>
Which method should be used to cancel future invocations of the function scheduled by setTimeout()?
Which of the following is a feature of an interpreter?
Assume that we have to convert the boolean value 'false' to a string. Which of the following commands can be used to do this without invoking the 'new' operator?
What will be the output of the following JavaScript code?
<p id="demo"></p>
<script>
function myFunction()
{
var str = "Is this his";
var patt1 = /is$/i;
var result = str.match(patt1);
if(result)
result='true';
else
result='false';
document.getElementById("demo").innerHTML = result;
}
</script>
OnSite
1 Openings
FullTime
Posted 17 days ago