This is a simple Cloudflare Worker application that demonstrates how to add two numbers using a web interface. It was built for educational purposes to teach basic web development concepts.
When you enter two numbers and click the "Add Numbers" button,
JavaScript sends an HTTP request to the Worker at
/add/{num1}/{num2}. The Worker processes the request,
calculates the sum, and returns the result as JSON. The frontend
then displays this result on the page.