Let's say I have this express application and want to add a global variable at the top
import express from 'express';
const app = express();
// var globalScopeVariable = 123;
app.get('/', (req, res) => {
  // home page
});
app.get('/create/:message', (req, res) => {
  //  add block
});
app.get('/add/:peerPort', (req, res) => {
  // add peer
});
Would it be good practice to use 'var' or 'let' in this scenario?
 
    