From 78dc1d206e82e1641d326f4648a96dc00302a285 Mon Sep 17 00:00:00 2001 From: 622aa39c1f9b166ab1a38c05 <622aa39c1f9b166ab1a38c05@devide> Date: Tue, 9 May 2023 02:07:00 +0000 Subject: [PATCH] Tue May 9 02:07:00 UTC 2023 inscode --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index e8a5f7a..dc9a09c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -63,7 +63,7 @@ export default { }, shuffleDeck() { for (let i = this.deck.length - 1; i > 0; i--) { - const j = Math.floor(Math.random() * (i 1)) + const j = Math.floor(Math.random() * (i + 1)) const temp = this.deck[i] this.deck[i] = this.deck[j] this.deck[j] = temp -- GitLab