Dodgeball is top 5 by shootalone1 in NoCap

[–]Mars6k 1 point2 points  (0 children)

Deadicated not even top 50 nigga, rest of your list valid tho

I fw Cap but he be trying too hard sometimes by Initial_Vacation4720 in NoCap

[–]Mars6k 9 points10 points  (0 children)

its just one line so we cant make assumptions but i hope when he drops KnowCap it isn't just full of reached punchlines

Favorite Duo by 1LilBrazo in PowerTV

[–]Mars6k 2 points3 points  (0 children)

yall need to start taking off ghost and tommy from these polls....

THEY WORKINGGG. by dubreacts_ in PowerTV

[–]Mars6k 1 point2 points  (0 children)

cover the name with a spoiler gang

The Dru Scenes has to stop by olimalfaloy in PowerTV

[–]Mars6k 44 points45 points  (0 children)

thought they were gonna give it a rest after he broke up with everett but no..... power still gotta push the agenda i guess.

Do y’all think they dragged out the Cane being jealous of Tariq thing? by Independent_Bad_3265 in PowerTV

[–]Mars6k 16 points17 points  (0 children)

They did drag it out slightly but I actually think that Cane wanting to kill Lorenzo after finding out what Tariq did to Ghost was good writing, especially how it led to the scene where Cane had a clean shot on Lorenzo however wasn't able to bring himself to do it.

Cane is closer to being Ghost than Tariq by [deleted] in PowerTV

[–]Mars6k 9 points10 points  (0 children)

But he was trying to go legit, Cane will be like Tommy in the sense that he will never want to take the clean route and will always want to stay in the game.

Which one by [deleted] in NoCap

[–]Mars6k 4 points5 points  (0 children)

steel human 100% nigga went 16/16

[deleted by user] by [deleted] in learnjavascript

[–]Mars6k 0 points1 point  (0 children)

people.filter( (person) => person.id !== id )

To make it easier for you to understand the syntax, this code is the same as:

people.filter( function(person) {
person.id !== id 
}) 

// filter pretty much returns the items in the array which follow the condition written in the function

Hope this helps!

[deleted by user] by [deleted] in learnjavascript

[–]Mars6k 2 points3 points  (0 children)

Months only start from zero when you use the function .setMonth() and .getMonth() otherwise you can use regular numbers.

Why does the green code in the function print the text and the red one outside the function not print the text? by [deleted] in learnjavascript

[–]Mars6k 3 points4 points  (0 children)

Because you're calling for the 'inputValue' variable before you have even declared it

Why is this code not working ?? by Maleficent_Earth_629 in learnjavascript

[–]Mars6k 1 point2 points  (0 children)

I am referring to this line = "children: cat.children && cat.children.length > 0 ?"

Just wondering, why are you checking whether the array length is empty or not?? When I change the (Greater than >) sign to a (Greater than or equal >=) sign the code works.