TypeError: Cannot read properties of null (reading ‘length’)

Being the Javascript newbie that I am… Javascript errors are still a mystery, more so if using Chrome/Chromium. With Firefox the error was actually more clear. TypeError: Cannot read properties of null (reading ‘length’) means you have a variable that you’re checking it’s property ‘length’ to be a certain value but the variable is null.…

Read Article