Slide 18
Slide 18 text
function isFollowing(user: CurrentUser, topic: Topic): boolean {
return user.followedTopicsIds.indexOf(topic.id) !== -1;
}
isFollowing(null, topic);
isFollowing(user, null);
isFollowing(user, somethingElse);
const variable: number = isFollowing(user, topic);
const variable: boolean = isFollowing(user, topic);