JSFiddle - React, Tailwind, and code Playground
by SriSri M
JavaScript
//literals
var books = {
volume : 1.2,
pages : 500,
author : "leo tolstoy",
bestbuy : function(){
console.log(books.volume);
//console.log(books.bestbuy());
}
// console.log(books.bestbuy());
}
console.log(books.volume);
books.bestbuy();