Quiz: Object Oriented JavaScript
Try this self-check quiz to test your knowledge!
What do we mean by "abstraction"?
Inheriting features from another Class uses what command in JavaScript?
inherits
extends
overrides
compares
extends
is used to inherit from another Class.What term describes the concept of altering the functionality of inherited Class methods?
What is the method that initializes a Class called in JavaScript?
init()
build()
create()
constructor()
constructor()
method is called to initialize an instance of a Class.The get
command creates what kind of property on a Class?
get
command creates a dynamic property on a Class.Which command is used to bring in the existing functionality of a given method from the parent Class so that additional functionality can be added around it?
break()
swing()
super()
include()
super()
command is used to bring in existing functionality of a method from the parent Class.Visit Quiz Online
The quiz on this page has been removed from your PDF or ebook format. You may take the quiz by visiting this book online.