1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00
elinks/test/ecmascript/assert/console.assert.html

7 lines
165 B
HTML
Raw Normal View History

2024-04-12 16:02:38 +02:00
<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();
2024-04-12 16:02:38 +02:00
</script>