how to get the value of a json object in javascript code example

Example 1: key value json javascript

var jsonArray = '{"required":1, "minlength":2}'
var jsonParsedArray = JSON.parse(jsonArray);
for (key in jsonParsedArray) {
  if (jsonParsedArray.hasOwnProperty(key)) {
      console.log("%c "+key + " = " + jsonParsedArray[key],"color:cyan");
  }
}

Example 2: javascript find json value

function getCountryByCode(code) {
  return data.filter(
      function(data){ return data.code == code }
  );
}

var found = getCountryByCode('DZ');