Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialFuad Ak
Courses Plus Student 691 Pointswhat is the answer?
what is the answer?
<!DOCTYPE html>
<html lang="en">
<head>
<title> JavaScript Foundations: Objects</title>
<style>
html {
background: #FAFAFA;
font-family: sans-serif;
}
</style>
</head>
<body>
<h1>JavaScript Foundations</h1>
<h2>Objects: Methods</h2>
<script>
var genericGreet = function() {
return "Hello, my name is " + this.name;
}
var andrew = {
name: "Andrew",
greet:genericGreet()
}
var ryan = {
name: "Ryan"
greet:genericGreet()
}
</script>
</body>
</html>
Fuad Ak
Courses Plus Student 691 Pointsit asks me to add andrew and ryan genericGreet function, and I have done this but it gives error(Parse error)
1 Answer
Hugo Paz
15,622 PointsYou forgot to put a comma after the name in the ryan object and you just need to pass the variable name to greet, like this:
var andrew = {
name: "Andrew",
greet:genericGreet
}
var ryan = {
name: "Ryan",
greet:genericGreet
}
The way you did it passes the return value from that function and assigns it to greet, this means the greet value will be "Hi, my name is ".
Fuad Ak
Courses Plus Student 691 Pointsthank you mister!
Hugo Paz
15,622 PointsHugo Paz
15,622 PointsHi fuad,
What is the question?