JSFiddle - React, Tailwind, and code Playground
by kalar su
JavaScript
var hotel ={ name : 'Park', rooms : 120, booked : 77.
};
hotel.gym =true;
hotel .pool = false; delete hotel .booked;
JAVASCRIPT
@ FUNCTIONS, METHODS & OBJECTS
var elName =document.getElementByld('hotelName'); elName.textContent =hotel.name;
var elPool =document.getElementByid('pool'); elPool.className = 'Pool: ' + hotel.pool;
var elGym =document.getElementByld('gym'}; elGym.className = 'Gym: ' + hotel .gym;