JSFiddle - React, Tailwind, and code Playground

by kalar su

HTML

<div id="hotelName"></div>
<div id="rooms"></div>

JavaScript

var prodcut = {
	name: 'iphone',
  price: 1200,
  type: "phone",
  checkAvailability: function() {
  	return this.rooms - this.booked;
  }
};

var elName = document.getElementById('hotelName');
elName.textContent = hotel.name;

var elRooms = document.getElementById('rooms');
elRooms.textContent = hotel.checkAvailability();