From 17a9e2d7e93b144a0b7dea05c95f0f01d15cd576 Mon Sep 17 00:00:00 2001 From: sam Date: Wed, 17 Jan 2024 16:37:05 +0100 Subject: [PATCH] print array into console --- web/js/Database.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web/js/Database.js b/web/js/Database.js index b82b927..02a3985 100644 --- a/web/js/Database.js +++ b/web/js/Database.js @@ -17,5 +17,6 @@ function getData(name){ .then(response => response.json()) .then(data => { requesteddata = data; + console.log(data); }); }