<!DOCTYPE HTML>
<html>
<body>
  <p>Before the script...</p>
  <script>
    alert([[25,4]].includes([25,4]));
  </script>
  <p>...After the script.</p>
</body>
</html>
When I run the above code, it outputs "false", which isn't correct. If I change [[25,4]].includes([25,4]) to ['a'].includes('a'), it outputs the correct answer "true". Why does it do that?
 
    