how get a json object from an api in javascript
let url = 'https://example.com';
fetch(url)
.then(res => res.json())
.then((out) => {
console.log('Checkout this JSON! ', out);
})
.catch(err => { throw err });
how get a json object from an api in javascript
let url = 'https://example.com';
fetch(url)
.then(res => res.json())
.then((out) => {
console.log('Checkout this JSON! ', out);
})
.catch(err => { throw err });
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);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us