Javascript: the shortest IE browser in the world-javascript skills

Source: Internet
Author: User
In the past, the shortest IE determination was developed by virtue of the feature that IE does not support vertical tabs. Var ie =! + "\ V1 ";

Only 7 bytes! See this article, "32 bytes, ehr... 9, ehr... 7 !!! To know if your browser is IE, describes how foreigners reduce IE's judgment from 32 bytes to 7 bytes step by step! Story

But this record was broken by a Russian in January 8 this year, and now it only takes 6 bytes! It makes use of the difference between IE and the standard browser in handling the toString method of arrays. For the standard browser, if the last character in the array is a comma, The JS engine will automatically remove it. Congratulations, Aleko. You are my idol!

Var ie =! -[1,];

<Script type = "text/javascript"> var ie =! -[1,]; alert (ie); script
[Ctrl + A select all Note: If you need to introduce external Js, You need to refresh it to execute]



If we judge from the Perspective of Non-IE, we can save a bit, because when we are compatible, most of the cases are IE and non-IE.

Var notIE =-[1,];

<Script type = "text/javascript"> if (-[1,]) {alert ("this is not an IE browser! ");} Else {alert (" this is IE browser! ");} Script
[Ctrl + A select all Note: If you need to introduce external Js, You need to refresh it to execute]

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.