mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 09:35:09 +00:00
11 lines
425 B
HTML
11 lines
425 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println(structuredClone(new Boolean(true)));
|
|
println(structuredClone(new Boolean(false)));
|
|
println(structuredClone(new Number(123)));
|
|
println(structuredClone(new Number(123.456)));
|
|
println(structuredClone(new String("This is a String object")));
|
|
println(structuredClone(Date.UTC(2023, 7, 23)));
|
|
});
|
|
</script>
|