Astro Dynamic Table

High-Speed Internet Plans

This project demonstrates how to dynamically generate a table in Astro using JavaScript objects. Instead of manually writing each table row, we define an array containing service plan details and use Astro’s mapping syntax to generate the rows dynamically.

Dynamic Table

Service Download Speed (Mbps)
Basic 0 Mbps
Express 100 Mbps
Extreme 500 Mbps
Ultimate 1 Gig

How It Works

Instead of hardcoding table rows, this project takes advantage of an array of objects, where each object represents a service plan. Astro’s {services.map()} function is then used to loop through this data and generate table rows dynamically. This approach makes it easier to modify or expand the service offerings without changing the table structure.

To see the source code: dynamic-table.astro

Key Concepts