Equality

"==" test equality with potential change of type
"===" test equality without change of type
if( 5=="5" ) { // Return true
  console.log("Re-typing"); 
}
if( 5==="5" ) { // Return false
  console.log("Don't pass here");
}
Good practice: Prefer "===" than "==""
41/41