SyntaxFix
Write A Post
Hire A Developer
Questions
Personally I find
if (id in tutorTimes === false) { ... }
easier to read than
if (!(id in tutorTimes)) { ... }
but both will work.