Answers for "get value from json string in javascript"

0

Get Value From JSON Object In JavaScript

var data = `{
  "employee": {
    "name": "John",
    "age": 30,
    "salary": 5000,
    "city": "New York",
    "skills": ["JavaScript", "CSS", "HTML"]
  }
}`;
// current data type is string 'data'
console.log(typeof data);

// convert data into JSON object
var parsedData = JSON.parse(data);
console.log(typeof parsedData);

// get value from JSON object in JavaScript
console.log(parsedData.employee.name,
            parsedData.employee.age,
            parsedData.employee.skills);
Posted by: Guest on February-27-2022
-2

javascript find json value

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

var found = getCountryByCode('DZ');
Posted by: Guest on May-21-2021

Code answers related to "get value from json string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language