complexity: 5 ; importance: 2; author: docentmail


"==" vs. "====" operators

Problem 2016-02-11-17-15

complexity: 5 ; importance: 2; author: docentmail


Question: Give values for variables a and b to force first alert print true and second prints false.

 var a=?;
 var b=?;
     
 alert(' a == b '  + (a == b) );
 alert(' a===b '+ (a === b) );