<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modulus Assignment Operator Example</title>
</head>
<body>
<script>
  // Modulus Assignment Operator Example
  let c = 17;
  c %= 5; // Equivalent to: c = c % 5
  document.write("c = " + c); // Output: c = 2
</script>
</body>
</html>