Skip to content

Commit adbca06

Browse files
authored
Update App.svelte
Changed questions from let to const because abusing let in constant values makes code less intuitively readable
1 parent 9b19caf commit adbca06

File tree

1 file changed

+1
-1
lines changed
  • content/tutorial/01-svelte/06-bindings/04-select-bindings/app-b/src/lib

1 file changed

+1
-1
lines changed

content/tutorial/01-svelte/06-bindings/04-select-bindings/app-b/src/lib/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script>
2-
let questions = [
2+
const questions = [
33
{
44
id: 1,
55
text: `Where did you go to school?`

0 commit comments

Comments
 (0)