// Declare at the beginning var jsonURL, avgRating, reviewCount;
jsonURL = "https://maps.googleapis.com/maps/api/place/details/json?placeid=ChIJrxfE_LhZwYkRFYvYmnCW9yc&fields=name,rating,user_ratings_total&key=AIzaSyDeBkUIuUK0T_-hSLic7zF1f3381WiyxSI";
jQuery.getJSON(jsonURL, function(data) {
var text = `avgRating: jQuery{data.rating}
reviewCount: jQuery{data.user_ratings_total}
`
jQuery(".mypanel").html(text); });