I am using JSHint and I have a global variable (test) declared using the predef options. However in my code I can just override the global variable using
var test = 4;
Is there anyway to prevent this? I want to use my global variable without being able to override it in any way.