Skip to content

Commit

Permalink
Update follow-back.js
Browse files Browse the repository at this point in the history
  • Loading branch information
farhan7reza7 authored Jan 31, 2024
1 parent 7d2e8b1 commit 879f3fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/follow-back.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ function followBack(yourUsername, yourToken) {
const message = followers.includes(username)
? `Yes, ${username} follows you!`
: `No, ${username} does not follow you!`;
console.log(message);
//console.log(message);
return message;
},

Expand All @@ -156,7 +156,7 @@ function followBack(yourUsername, yourToken) {
const message = following.includes(username)
? `Yes, you follow ${username}!`
: `No, you do not follow ${username}!`;
console.log(message);
//console.log(message);
return message;
},

Expand Down Expand Up @@ -216,7 +216,7 @@ function followBack(yourUsername, yourToken) {
const message = followingBacks.includes(username)
? `Yes, ${username} following back!`
: `No, ${username} does not following back!`;
console.log(message);
//console.log(message);
return message;
},

Expand Down

0 comments on commit 879f3fe

Please sign in to comment.