Solution that will help


function checkEqual(a, b) {
  return (a === b ? true : false );
}

checkEqual(1, 2);
1 Like

Is there a question here?