• 引号

    引号

    最外层统一使用单引号。

    1. // not good
    2. var x = "test";
    3. // good
    4. var y = 'foo',
    5. z = '<div id="test"></div>';