Case sensitive non verification in JS ?
Hello team,
During training JavaScript using PhpStrorm, I've take a lot of time trying to debugging a mistake of me.
On a line, I written :
var myButton = Document.querySelector('button');
instead of :
var myButton = document.querySelector('button');
those prevent triggering the script.
But PhpStorm analysis don't even returned a warning. Is it a normal behavior, like it is a WebStorm's reserved feature or an oversight ?
Thanks in advance ! (Hope my non-native english is understanding btw...)
请先登录再写评论。
They're different: document.* is determined in DHTML.js while Document.* is in DOMCore.js, DHTML.js, HTML5,js
Thanks for you reply Dmitry. Yeah, I'm currently not at this level xD.
Sorry for the delay, I was on holidays without my credentials :P