Callback Hell Javascript

Example

getUserData(userId, function(user) {
	getPosts(user, function(posts) {
		getComments(posts, function(comments) {
			// more nested callbacks...
		});
	});
});