diff --git a/js/predictions.js b/js/predictions.js index 359d329..9c81e3a 100644 --- a/js/predictions.js +++ b/js/predictions.js @@ -882,8 +882,8 @@ class Predictor { }); let global_min_max = []; - for (var day = 0; day < 14; day++) { - prices = { + for (let day = 0; day < 14; day++) { + const prices = { min: 999, max: 0, } diff --git a/js/scripts.js b/js/scripts.js index 1bd48b8..6e7c384 100644 --- a/js/scripts.js +++ b/js/scripts.js @@ -208,9 +208,8 @@ const getPricesFromQuery = function (param) { }; const getPreviousFromQuery = function () { - /* Check if valid prices are entered. Exit immediately if not. */ - prices = getPricesFromQuery("prices"); + const prices = getPricesFromQuery("prices"); if (prices == null) { return null; }