Minification (programming): Difference between revisions

Content deleted Content added
No edit summary
ok
Tags: Reverted possible vandalism Visual edit Mobile edit Mobile web edit
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">