Fixed-Length Tuples

👨‍💼 Perfect! Tuples work great for coordinates.
🦉 Notice how destructuring makes tuple usage clean:
function formatCoordinate([lat, long]: [number, number]): string {
	return `Lat: ${lat}, Long: ${long}`
}
The tuple type guarantees exactly two numbers, and destructuring gives them meaningful names.

Please set the playground first

Loading "Fixed-Length Tuples"
Loading "Fixed-Length Tuples"

No tests here 😢 Sorry.