JSFiddle - React, Tailwind, and code Playground

by kalar su

HTML

<p id="display">a</p>

JavaScript

var products = {
    productName:"iphone",
    price: 10000,
    importQty:1000,
    soldQty:500,
    color:["pink", "white", "black"],
    checkAvilability: function(){
    	return this.importQty - this.soldQty;
    } 
};

document.getElementById("display").textContent = products.checkAvilability();