Computed properties are functions declared as property. There are multiple languages supporting computed properties, so please use this tag in combination with tags like [swift], [javascript], etc.
Computed properties are functions declared as property. They usually don't store a specific value, but return a value dynamically. Computed properties can also be used to perform additional actions when reading or writing them.
Example in Swift:
var computedProperty: Int {
get {
return 1337
}
set (new) {
print("The property was set to \(new)")
}
}