mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
382 B
382 B
id | title |
---|---|
097ba634-5976-437d-84c9-3bfe776df02b | abstraction |
Origin
Latin abstrahere "drawm from"
Definition
Hide implementation details from the user. For exapmle by extending classes.
Examples
abstract class Fish {
swim() { return '>>>>>' }
}
class Shark extends Fish {
name: 'shark'
}
class Tuna extends Fish {
name: 'tuna'
}