Minification (programming): Difference between revisions

Content deleted Content added
ok
Tags: Reverted possible vandalism Visual edit Mobile edit Mobile web edit
m Reverted edits by 2001:FB1:159:1CE3:49BA:E77C:8A5:9D4F (talk) (HG) (3.4.12)
Line 10:
 
==Example==
For example, the [[JavaScript|Java]] code
<syntaxhighlight lang="JavaScript">
 
// This is a comment that will be removed by the minifier
var array = [];
for (var i = 0; i < 20; i++) {
array[i] = i;
}
</syntaxhighlight>
is equivalent to but longer than
<syntaxhighlight lang="javascript">