Home / CSE / Javascript - CS :: Discussion

Discussion :: Javascript - CS

  1. The statement a===b refers to

  2. 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

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    a==b returns a true if a and b refer to the same objec ,so they are equal, else it returns a false.


Be The First To Comment