Anonymous E joined in and replied with this 2 years ago, 4 minutes later, 3 hours after the original post[^][v]#1,230,661
@previous (Fake anon !ZkUt8arUCU)
Tucker had a show called crossfire at CNN, and was fired from that years ago when big-nosed Jonny bullied him too hard.
Anonymous G joined in and replied with this 2 years ago, 6 minutes later, 7 hours after the original post[^][v]#1,230,686
@previous (F)
He tries to use "I'm a comedian" as an easy excuse out out the standards he's holding others too despite being a politically charged news show in fact.
His latest show is just him being pessimistic and virtue signalling over and over.
Just saw some clip of him talking over his guest and using the deaths of kids as a reason to disarm the working class.
Anonymous H replied with this 2 years ago, 51 minutes later, 2 days after the original post[^][v]#1,230,980
const cnn = {
anchor: 'Don Lemon',
network: 'CNN',
employed: true
};
const foxNews = {
anchor: 'Tucker Carlson',
network: 'Fox News',
employed: true
};
const breakingNews = [cnn, foxNews];
const anchorOut = (breakingNews) => {
for (let news of breakingNews) {
if (!news.employed) {
return `${news.anchor} is out at ${news.network}.`;
}
}
return 'No anchors are reported to be out at this time.';
};
anchorOut(breakingNews);
// Returns "No anchors are reported to be out at this time."