1
爲什麼谷歌Analytics跟蹤精縮到:谷歌分析爲什麼縮小爲:`1 * new Date()`?
i[r].l=1*new Date();
// instead of: which saves one byte
i[r].l=+new Date();
// or even: which saves 3 bytes
i[r].l=+new Date;
任何理由不使用更高版本?
全碼:
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
因爲在實現它之前他們沒有將它發佈到codegolf上?這可能只是它們的閉包編譯器的結果。 – Tschallacka
可能因爲原始代碼只是'1 * new Date()',並且沒有從'1 *'到'+'的縮小。 – Bergi