Question #236

Author: admin
tags: HTML   frontend (web)   JavaScript  
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>

<script>
  throw new Error('Problem');
  console.log(1);
</script>

<script>
  console.log(2);
</script>

</body>
</html>
What will be written in the browser console after error message?
Nothing
1, 2
1
2
Rate the difficulty of the question:
easyhard