JSFiddle - React, Tailwind, and code Playground

by Jesse M

HTML

<div id="infoDiv"></div>

CSS

#infoDiv {
  border: 1px solid #000;
  padding: 1rem;
}

JavaScript

function Book(title, author, pages, read){
	this.title = title;
  this.author = author;
  this.pages = pages;
  this.read = read;
  this.info = function(){
  		return this.title + ' by ' + this.author + ', ' + this.pages + ' pages, ' + this.read;
  };
}

const book1 = new Book('hobbit', 'tolkien', 3000, 'not read yet');

console.log(book1.info());