fac-17 / week-7-langs

Week 7 Group
https://lang-week7.herokuapp.com/
0 stars 4 forks source link

Accident global variable creation #26

Open crianonim opened 5 years ago

crianonim commented 5 years ago

in handlers.js on line 69

 dbUsernames = [];

You are probably wanting to declare it in the local scope with

const dbUsernames = [];

A linter would help you with that!