gpt4 book ai didi

javascript - 如何使用 Python 或 Lisp 删除无用的 JavaScript 代码

转载 作者:太空宇宙 更新时间:2023-11-03 18:51:16 24 4
gpt4 key购买 nike

JavaScript代码如下:

   <script>
a={name:"abc"};
b={xyz:"123"};
this.c='aaa';
this.cc='bbb';
d=new Date();
var e=new Array();
var f=false;
this.g=123;
this.g++;
document.write(b.xyz+this.cc);
</script>

上面只使用了变量b(b={xyz:"123"};)cc(this.cc='bbb';)

有谁知道是否有办法用 Python 或 Lisp 删除未使用的变量?

最佳答案

尝试使用闭包编译器javascript代码中移除冗余代码和无用的空格:我在 closure compiler 上运行了你的代码(158 bytes),我得到了这个(89 bytes):

a={name:"abc"};b={b:"123"};this.a="bbb";d=new Date;document.write(b.b+this.a);

http://closure-compiler.appspot.com

关于javascript - 如何使用 Python 或 Lisp 删除无用的 JavaScript 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9957453/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com