You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/assignment-to-const1/main.svelte

7 lines
105 B

<script>
const arr = [1, 2];
[arr[0], arr[1]] = [arr[1], arr[0]];
</script>
<p>{arr[0]}, {arr[1]}</p>