Q
What is the result of the expression true == 1 in JavaScript?

Answer & Solution

Answer: Option A
Solution:
JavaScript performs type coercion with the == operator, converting true to 1, so true == 1 evaluates to true.
Related Questions on Average

Which of the following statements is true about primitive data types in JavaScript?

A). They have methods and properties

B). They can be used as keys in objects

C). They are instances of Object

D). They are passed by value

Which primitive value represents absence of value or no value assigned?

A). undefined

B). null

C). 0

D). 'undefined'

What is a primitive value in JavaScript?

A). A complex data structure

B). A basic data type

C). A function

D). An array

Which of the following statements about primitive values in JavaScript is true?

A). They are mutable

B). They are passed by reference

C). They are stored on the heap

D). They are immutable

What is the data type of the value undefined in JavaScript?

A). String

B). Object

C). Undefined

D). Number

What is the data type of the value NaN in JavaScript?

A). Number

B). String

C). Object

D). Undefined

What is the result of the expression true + false in JavaScript?

A). true

B). false

C). 1

D). 0

What happens when you try to access a variable that has not been declared in JavaScript?

A). SyntaxError is thrown

B). ReferenceError is thrown

C). TypeError is thrown

D). Undefined

What is the result of the expression undefined + null in JavaScript?

A). undefined

B). null

C). 0

D). Error

What is the result of the expression 5 + '5' in JavaScript?

A). 10

B). '55'

C). '10'

D). Error