Architecture
Refactoring
Agile
Delivery
Microservices
Data
Testing
DSL
About
Books
FAQ
Videos
Content Index
Board Games
Photography
Insights
Careers
Products
Twitter
RSS
Mastodon
How do I access the web edition?
class Person { get courses() {return this._courses;} set courses(aList) {this._courses = aList;}
image/svg+xml
class Person { get courses() {return this._courses.slice();} addCourse(aCourse) { ... } removeCourse(aCourse) { ... }