Your project, which uses prototype.js, contains the JavaScript class Photoviewer (see EXAMPLE, below). Which one of the following code samples will create a class called AdvancedPhotoViewer that extends Photoviewe r?
EXAMPLE:
var PhotoViewer = Class.create();
A. var AdvancedPhotoViewer = new PhotoViewer()
B. AdvancedPhotoViewer.prototype = Object.extend (new PhotoViewer ()
C. var AdvancedPhotoViewer = Class.extend (PhotoViewer)
D. AdvancedPhotoViewer = PhotoViewer.extend ()
Your project, which uses prototype.js, contains the JavaScript class Photoviewer (see EXAMPLE, below). Which one of the
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Your project, which uses prototype.js, contains the JavaScript class Photoviewer (see EXAMPLE, below). Which one of the
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!