

修行中的君子,美學審判官,業餘譯者,編程新手,計算機科學與數學初心家,ACG 眾,FOSS 信徒,Arch Linux 福音傳播士,追 MOOC 族,Geeker
let followers, following;
start.followersIDs(ME).//load followers
do((output)=>followers=output).//set followers variable
followingIDs(ME).//load following
do((output)=>following=output).//set following variable
do(()=>{
console.log(‘followers:’,followers.length);
console.log(‘I follow:’,following.length);
console.log(“Follow me that I don’t follow back:”, Collection(followers).drop(following).count());//use Collection function to create dstools collection and use its functions such as `drop`
console.log(“Don’t follow me back:”, Collection(following).drop(followers).count());
});