<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Assignment Operator Example</title>
</head>
<body>
<script>
  // Assignment Operator Example
  let x = 10; // Assigns the value 10 to the variable x
  document.write("x = " + x); // Output: x = 10
</script>
</body>
</html>