Which statement should be inserted in the placeholder on line 02 to allow for a variable to be set to a new instanceof a Post with the three attributes correctly populated?

A developer creates a class that represents a blog post based on the requirement that a Post should have a body author and view count.

The Code shown Below:

Class Post {

// Insert code here This.body =body This.author = author; this.viewCount = viewCount;

}

}

Which statement should be inserted in the placeholder on line 02 to allow for a variable to be set to a new instanceof a Post with the three attributes correctly populated?
A . super (body, author, viewCount) {
B. Function Post (body, author, viewCount) {
C. constructor (body, author, viewCount) {
D. constructor() {

Answer: C

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments