Parse through the following json array in javascript to print out each employees first and last name to the console:
var json = [{"employees":[
{ "firstName":"John", "lastName":"Doe" },
{ "firstName":"Anna", "lastName":"Smith" },
{ "firstName":"Peter", "lastName":"Jones" }
]}];
Get Answers For Free
Most questions answered within 1 hours.