JSFiddle - React, Tailwind, and code Playground

by alexflav23

JavaScript

var now = new Date();
var example = {
    name: "Diana",
    description: "Very very nice",
    properties: {
        "size" : "50",
        "hairColor": "blonde"
    },
    pictures: ["test", "test"],
    locations : ["Heathrow", "Holborn", "Mayfair", "Paddington", "Chelsea"],
    rating: 5,
    reviews: [
        {
            author: "John",
            title: "nice",
            text: "very nice experience",
            rating: 5
        }, {
            author: "James",
            title: "great",
            text: "great great",
            rating: 4.8
        }
    ]
};
alert(JSON.stringify(example));