Day 28: Optimize JavaScript Performance: Lazy Load, Split Code & Enhance User Experience πŸš€

Lokesh Prajapati
4 min read4 days ago

--

Optimize JavaScript Performance

Web performance plays a crucial role in improving user experience, SEO rankings, and overall website efficiency. A well-optimized JavaScript application runs faster, consumes fewer resources, and enhances engagement and conversions.

In this post, we’ll cover essential JavaScript performance techniques, including Lazy Loading, Code Splitting, Minification, Debouncing, and more β€” with real-world examples!

πŸš€ Why is Web Performance Important?

Poor web performance leads to:

βœ… Slower load times β†’ Increased bounce rates.
βœ… Higher memory consumption β†’ Slow UI interactions.
βœ… Poor SEO rankings β†’ Affects visibility in search engines.

Optimizing JavaScript ensures faster load times, better UX, and lower server costs! πŸ”₯

πŸ›  Key JavaScript Performance Optimization Techniques

1️⃣ Lazy Loading β€” Load Resources Only When Needed! 🎯

Lazy loading delays the loading of non-essential resources until they are needed. It improves initial page load speed and reduces unnecessary network requests.

πŸ”Ή How does it work?

  • Instead of loading all images/videos at once, lazy loading loads them only when they appear in the viewport.
  • Improves First Contentful Paint (FCP) and reduces bandwidth consumption.

πŸ”Ή Example β€” Lazy Load Images:

<img src="placeholder.jpg" data-src="high-resolution.jpg" class="lazy-load">
document.addEventListener("DOMContentLoaded", function () {
const lazyImages = document.querySelectorAll(".lazy-load");

const observer = new IntersectionObserver((entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const img = entry.target;
img.src = img.getAttribute("data-src");
observer.unobserve(img);
}
});
});

lazyImages.forEach(img => observer.observe(img));
});

πŸ“Œ Result:
Images load only when visible, reducing initial page load time! πŸš€

2️⃣ Code Splitting β€” Reduce JavaScript Bundle Size! ⚑

Large JavaScript files slow down page load times. Code splitting divides JS into smaller chunks, loading them only when required.

πŸ”Ή How does it work?

  • Instead of loading all JavaScript on the first page load, split the code into different files and load only what’s needed.

πŸ”Ή Example β€” Code Splitting with Webpack:

// Dynamic Import using Webpack
import("./module.js").then(module => {
module.default();
});

πŸ“Œ Result:
Only loads the module when needed, reducing initial load time.

3️⃣ Minification & Compression β€” Reduce JavaScript File Size! πŸ“‰

Minification removes unnecessary characters (whitespace, comments) from code, reducing file size.

πŸ”Ή How does it work?

  • Tools like Terser, UglifyJS, or Google Closure Compiler remove redundant characters, making JavaScript files smaller.

πŸ”Ή Example β€” Before & After Minification:

Before:

function sayHello() {
console.log("Hello, World!");
}
sayHello();

After Minification:

function sayHello(){console.log("Hello, World!")}sayHello();

πŸ“Œ Result:
Smaller file size β†’ Faster downloads & better performance! πŸš€

4️⃣ Debouncing & Throttling β€” Optimize Event Listeners! ⏳

πŸ”Ή Debouncing: Delays execution of a function until after a pause in events.
πŸ”Ή Throttling: Ensures a function executes only once within a specific time interval.

πŸ”Ή How does it work?

  • Debouncing prevents functions from executing multiple times rapidly (e.g., resizing a window).
  • Throttling limits function execution to a fixed interval (e.g., handling scroll events).

πŸ”Ή Example β€” Debounce Input Search (Waits 500ms after typing stops):

function debounce(fn, delay) {
let timer;
return function (...args) {
clearTimeout(timer);
timer = setTimeout(() => fn.apply(this, args), delay);
};
}

const searchInput = document.getElementById("search");
searchInput.addEventListener("input", debounce(() => {
console.log("Fetching API...");
}, 500));

πŸ“Œ Result:
Reduces unnecessary API calls when typing!

πŸ”Ή Example β€” Throttle Scroll Event (Runs once per 200ms):

function throttle(fn, limit) {
let lastCall = 0;
return function (...args) {
const now = Date.now();
if (now - lastCall >= limit) {
lastCall = now;
fn.apply(this, args);
}
};
}

window.addEventListener("scroll", throttle(() => {
console.log("Scroll event triggered!");
}, 200));

πŸ“Œ Result:
Prevents performance lag due to excessive event firing! πŸš€

5️⃣ Using Web Workers β€” Run JavaScript in Background Threads! πŸš€

Web Workers allow JavaScript to execute in a separate thread, preventing UI freezing.

πŸ”Ή How does it work?

  • Moves heavy computations off the main thread.
  • Keeps UI responsive while background processing happens.

πŸ”Ή Example β€” Web Worker Processing Data in Background:

// worker.js
self.onmessage = function (e) {
let result = e.data * 2;
self.postMessage(result);
};

// main.js
const worker = new Worker("worker.js");
worker.postMessage(5);
worker.onmessage = function (e) {
console.log("Processed Data:", e.data);
};

πŸ“Œ Result:
Runs tasks in background threads, avoiding UI lag! πŸš€

6️⃣ Using RequestAnimationFrame for Smooth Animations 🎞️

Instead of using setTimeout or setInterval, use requestAnimationFrame() for smoother animations.

πŸ”Ή How does it work?

  • Synchronizes animations with the browser’s refresh rate, reducing jank.

πŸ”Ή Example β€” Smooth Animation with requestAnimationFrame:

function animate() {
let element = document.getElementById("box");
let position = 0;
function move() {
position += 5;
element.style.left = position + "px";
if (position < 200) requestAnimationFrame(move);
}
requestAnimationFrame(move);
}
animate();

πŸ“Œ Result:
Animations appear smooth without frame drops! πŸš€

🎯 Conclusion

By implementing these JavaScript performance optimization techniques, you can significantly improve website speed, reduce memory usage, and create a seamless user experience! πŸš€

βœ… Key Takeaways:
βœ” Lazy Loading β€” Load resources only when needed.
βœ” Code Splitting β€” Reduce JavaScript bundle size.
βœ” Minification & Compression β€” Reduce JS file size.
βœ” Debouncing & Throttling β€” Optimize event handling.
βœ” Web Workers β€” Run tasks in background threads.
βœ” requestAnimationFrame β€” Ensure smooth animations.

πŸš€ Want to boost performance? Start implementing these techniques today! πŸ’‘

πŸ’¬ Which technique have you used before? Let’s discuss in the comments! πŸ‘‡

Sign up to discover human stories that deepen your understanding of the world.

--

--

Lokesh Prajapati
Lokesh Prajapati

Written by Lokesh Prajapati

Front-end-developer | Web Designer | Shopify Experts - https://lokesh-prajapati.vercel.app/

No responses yet

Write a response