Are there any differences in the JavaScript of these two modes in IE 9? If yes, what are they?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
IE9 standards document mode supports ECMAScript, Fifth Edition features, so the method such as
forEach,every,mapofArrayanddefineProperty,keysofObjectare support well. more aboutIE9 standards document mode supports enhanced DOM programmability. (may not what you’re interested in, but it does so). more about
IE9 removes some of the key differences between IE8 JavaScript implementation and the ECMAScript, Third Edition Specification.
Quirks mode supports the JavaScript functionality of IE6, It is similar to the behavior of IE5 and the Quirks mode behavior of IE6, IE7 and IE8.
Something changed in IE9 Standards Mode, such as does not support
arguments.calleranymore, JavaScript Property Enumeration Differs, and so on. read Features Changed in Windows Internet Explorer 9 all about this.