<script>
import SvelteObjectExplorer from "svelte-object-explorer";
import { count } from "./ExampleCustomStore.js";
let counter = 1;
let array = [
{ first: "Bob", surname: "Marley" },
{ first: "John", surname: "Lennon" },
{ first: "The Chuckle", surname: "Brothers" }
];
function incr() {
setInterval(() => {
counter++;
}, 100);
}
incr();
let value;
$: value = {
variousTypes: {
html:document.body,
boolean: true,
string: "test",
number: 123,
array: [[["test1", "test2"], "test2"], "test2"],
longarray: new Array(10000).fill("test"),
object: {
test1: {
test1: { test1: { test1: "test1", test2: "test2" }, test2: "test2" },
test2: "test2"
},
test2: "test2"
},
arrowfunction: () => {},