JSFiddle - React, Tailwind, and code Playground

JavaScript

function Product() {
    this.product_id = 0;
    this.quantity = 0;
    this.book_cost = "hello";   
}
    
var p = new Product();
p.quantity = 5;
var json = JSON.stringify(p);
window.alert(json);