
We have learned Object-oriented programming and how class and inheritance work in JavaScript. Now lets work with our Viking friends, applying all of the concepts we have just learned.
Fork this repo
Clone this repo
Practice OOPs Features
Upon completion, run the following commands:
git add .
git commit -m "ProGrad ID"
git push origin master
And finally, create a pull request so your ProGrad Mentor (PM) can review your work.
We must write the correct code in the script.js file. In this file you will find the following starter code:
class Blog{
}
In this case, it says that Blog class should receive 2 arguments (title & detail), so we have to write the correct code. Let’s make the Blog class receive two arguments:
class Blog{
constuctor(title,detail){}
}
Modify the Blog class and add two methods to it: addTitle(), and addDescription().
var title_card = document.createElement('h1');
title_card.setAttribute("id","blog-title");
console.log(title_card);
document.getElementById('card-text').appendChild(title_card);
title_card.innerHTML += this.title;


Setup EventListeners, so that we can display the entire blog for the users

Happy Coding ProGrads❤️