<p id="welcome">
Welcome to ChallengePost
</p>
When the page loads, you have the above markup. Without reloading the page, you want to add the user's full name in the message so it reads "Welcome to ChallengePost John Doe!"
An ajax request to /users/me.json
will return information about the current user in a JSON format that looks like this:
{
"firstName": "John",
"lastName": "Doe",
// ...
}
How would you implement it?