Listing 21.12. Osadzony kod JavaScript może zawierać znaki <, >, &
PRZYKŁAD POPRAWNY
<body>

<script>
if (4 < 5) {
    alert('Witaj');
} else {
    alert('Żegnaj');
}
</script>

</body>