Paste your JavaScript, and the tool strips whitespace and comments and shortens variable names to reduce the file size.
Minification removes unnecessary whitespace, line breaks, comments, and can shorten variable names. It creates the smallest valid JavaScript output.
Typical reduction is 20-40% depending on code style. Code with lots of comments and whitespace compresses more. The tool shows exact byte savings.
Yes, minified code is fully valid and executes identically to formatted code. Only readability is affected—minified code is harder for humans to read.