JavaScript Image Compressor
HTML:
<input type="file" id="file-input">
<button id="compress-btn">Compress Image</button>
<img id="image-preview" src="" alt="Preview">
CSS:
#image-preview { max-width: 500px; max-height: 500px; }
JavaScript:
const fileInput = document.getEleme...
scriptcrate.hashnode.dev3 min read