Ok, I've got an issue I don't understand.
I have a boolean value which I test and if true
I do something.
BUT javascript never go in it even if the var is true
.
I try this :
if(isConfigD)
handleConfigurationD;
this :
if(isConfigD == true)
handleConfigurationD;
And this :
if(isConfigD === true)
handleConfigurationD;
But nothing work whereas isConfigD
is always set on true
:(
What am I missing ?