JSFiddle - React, Tailwind, and code Playground

by DustyWhite

HTML

<div>
  JavaScript Object Methods.
  <br />Open JavaScript Console to see results.
</div>

JavaScript

"use strict";

// declare an Object Literal
var item = {
    "name": "Milk",
    "quantity": 1,
    "comment" : "Low Fat",
    "print":function(){
	    return this.name + ". Qty. " + this.quantity + ". " + this.comment;
	},
};

console.log(item.print());