2025-03-18 15:28:35 -03:00
|
|
|
<!DOCTYPE html>
|
2024-07-27 09:33:51 -03:00
|
|
|
<script src="../include.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
test(() => {
|
|
|
|
|
const select = document.createElement("select");
|
|
|
|
|
const option = document.createElement("option");
|
|
|
|
|
println(select.length);
|
|
|
|
|
select.add(option);
|
|
|
|
|
println(select.length);
|
|
|
|
|
select.length = 0;
|
|
|
|
|
println(select.length);
|
|
|
|
|
});
|
|
|
|
|
</script>
|