Profile Lookup FCC JS challenge

Size
1,772 Kb
Views
26,312

How do I make an profile lookup fcc js challenge?

What is a profile lookup fcc js challenge? How do you make a profile lookup fcc js challenge? This script and codes were developed by Brooke Shepherd on 22 October 2022, Saturday.

Profile Lookup FCC JS challenge Previews

Profile Lookup FCC JS challenge - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Profile Lookup FCC JS challenge</title>
</head>
<body> <script src="js/index.js"></script>
</body>
</html>

Profile Lookup FCC JS challenge - Script Codes JS Codes

//Setup
var contacts = [{ "firstName": "Akira", "lastName": "Laine", "number": "0543236543", "likes": ["Pizza", "Coding", "Brownie Points"]
}, { "firstName": "Harry", "lastName": "Potter", "number": "0994372684", "likes": ["Hogwarts", "Magic", "Hagrid"]
}, { "firstName": "Sherlock", "lastName": "Holmes", "number": "0487345643", "likes": ["Intriguing Cases", "Violin"]
}, { "firstName": "Kristian", "lastName": "Vos", "number": "unknown", "likes": ["Javascript", "Gaming", "Foxes"]
}];
function lookUpProfile(firstName, prop) { // Only change code below this line for (var i = 0; i < contacts.length; i++) { if (firstName == contacts[i].firstName) { if (contacts[i].hasOwnProperty(prop)) { return contacts[i][prop]; } else { return "No such property"; } } } return "No such contact"; // Only change code above this line
}
// Change these values to test your function
lookUpProfile("Akira", "likes");
Profile Lookup FCC JS challenge - Script Codes
Profile Lookup FCC JS challenge - Script Codes
Home Page Home
Developer Brooke Shepherd
Username tinyinkling
Uploaded October 22, 2022
Rating 3
Size 1,772 Kb
Views 26,312
Do you need developer help for Profile Lookup FCC JS challenge?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Brooke Shepherd (tinyinkling) Script Codes
Create amazing love letters with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!