3310487509
19.07.2022
5886
2
0
What is "inheritance" in Javascript?
Can anyone explain to me with simple words the meaning of "inheritance" in JavaScript? If you could give examples that would be too great. You can also share some links related to Inheritance in JavaScript.
Thanks in Advance!
Thanks in Advance!
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 3380114436
Url: https://administrator.de/contentid/3380114436
Ausgedruckt am: 23.11.2024 um 22:11 Uhr
2 Kommentare
Neuester Kommentar
Hi @3310487509,
inheritance means, that for ex. an object inherits a set of properties or functions from a parent object. A good example for inheritance are javascript classes
https://www.w3schools.com/js/js_class_inheritance.asp
So if you inherit a parent class the properties/functions from the parent are made available to current object.
Regards.
inheritance means, that for ex. an object inherits a set of properties or functions from a parent object. A good example for inheritance are javascript classes
https://www.w3schools.com/js/js_class_inheritance.asp
So if you inherit a parent class the properties/functions from the parent are made available to current object.
Regards.