Buenas compañero, esta puede ser una solución
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Lista de numeros pares hasta el 100</h1>
<script>
for (let i=2; i <= 100; i=i+2) {
document.write(i + "<br>")
}
</script>
</body>
</html>
Saludos