adplus-dvertising
frame-decoration

Question

The statement a===b refers to

a.

Both a and b are equal in value, type and reference address

b.

Both a and b are equal in value

c.

Both a and b are equal in value and type

d.

There is no such statement

Answer: (c).Both a and b are equal in value and type

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. The statement a===b refers to

Similar Questions

Discover Related MCQs

Q. Assume that we have to convert "false" that is a non-string to string. The command that we use is (without invoking the "new" operator)

Q. Consider the following snippet code:

var string1 = "123";
var intvalue = 123;
alert( string1 + intvalue );

The result would be

Q. A function definition expression can be called

Q. The property of a primary expression is

Q. Consider the following statements:

var text = "testing: 1, 2, 3"; // Sample text
var pattern = /d+/g // Matches all instances of one or more digits

In order to check if the pattern matches with the string "text", the statement is

Q. The JavaScript's syntax calling ( or executing ) a function or method is called

Q. What kind of an expression is "new Point(2,3)"?

Q. Which of the operator is used to test if a particular property exists or not?

Q. Among the following, which one is a ternary operator?

Q. "An expression that can legally appear on the left side of an assignment expression." is a well known explanation for variables, properties of objects, and elements of arrays. They are called

Q. JavaScript is a _______________ language

Q. A statement block is a

Q. When an empty statement is encountered, a JavaScript interpreter

Q. The "var" and "function" are

Q. Consider the following statement:

switch(expression)
{
statements
}

In the above switch syntax, the expression is compared with the case labels using which of the following operator(s) ?

Q. Consider the following statement:

var count = 0;
while (count < 10)
{
console.log(count);
count++;
}

In the above code snippet, what happens?

Q. The enumeration order becomes implementation dependent and non-interoperable if :

Q. What are the three important manipulations done in a for loop on a loop variable?

Q. Consider the following code snippet
function tail(o)
{
for (; o.next; o = o.next) ;
return o;
}
Will the above code snippet work? If not, what will be the error?

Q. One of the special feature of an interpreter in reference with the for loop is that