JSFiddle - React, Tailwind, and code Playground

by manappa

JavaScript

var myObject = {
  1:{
			created_at: "2018-11-12 05:50:28",
      customer_id: null,
      detail: "Mind blowing picture quality. All the shows and movies I used to watch seem a bit more visually dynamic since I have started watching them on this phone. Really good stuff. ",
      nickname: "Hitesh Shivnani",
      rating_percent: "100",
      rating_value: "5",
      review_id: "47440",
      status_id: "1",
      title: "Display is Phenomenal ",
      updated_at: "2018-11-12 05:50:28",
      verified_user: "0"
  },
  2:{
			created_at: "2018-11-12 05:50:28",
      customer_id: null,
      detail: "Mind blowing picture quality. All the shows and movies I used to watch seem a bit more visually dynamic since I have started watching them on this phone. Really good stuff. ",
      nickname: "Hitesh Shivnani",
      rating_percent: "100",
      rating_value: "5",
      review_id: "47440",
      status_id: "1",
      title: "Display is Phenomenal ",
      updated_at: "2018-11-12 05:50:28",
      verified_user: "0"
  }
}

Object.entries((k)=>{
	console.log(k.nickname);
})

console.log(myObject);