1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00
elinks/test/js/assert/console.assert.html
2024-09-24 21:43:10 +02:00

7 lines
165 B
HTML

<script>
console.error("console.assert.html");
console.assert(0 % 2 === 0, "O is not even");
console.assert(1 % 2 === 0, "1 is not even");
console.exit();
</script>