Architecture
Refactoring
Agile
Delivery
Microservices
Data
Testing
DSL
About
Books
FAQ
Videos
Content Index
Board Games
Photography
Insights
Careers
Radar
RSS
Mastodon
LinkedIn
X (Twitter)
BGG
How do I access the web edition?
function potentialEnergy(mass, height) { return mass * 9.81 * height; }
image/svg+xml
const STANDARD_GRAVITY = 9.81; function potentialEnergy(mass, height) { return mass * STANDARD_GRAVITY * height; }
aliases Replace Magic Number with Symbolic Constant