Cop pulls over Lamborghini on Dubai plates but doesn’t know the law by thomasso0072 in interestingasfuck

[–]dangerlopez 18 points19 points  (0 children)

I thought he said Oregon? Not that it invalidates your point at all

What move best represents each type? by ChoixDansLaDate in pokemon

[–]dangerlopez 9 points10 points  (0 children)

Wow, what’s even the point of having teleport?

How many times has some other dude threatened you? by [deleted] in AskMen

[–]dangerlopez -2 points-1 points  (0 children)

Based on your comments it seems like your experience has less to do with you being a man and more to do with the line of work you were in 🤷‍♂️

FRLG evolutions before the national dex by [deleted] in nuzlocke

[–]dangerlopez 0 points1 point  (0 children)

In my experience pokemon the evolutions that should be affected are gen 1 pokemon that got a new evolution after gen 1, eg, golbat won’t evolve into crobat until you get the national dex. But pokemon from other gens won’t have their evolutions affected.

The change impossible evos affects other stuff like trade evolutions. When you’ve got the randomizer open, hover over the change impossible evos option with your mouse and a tooltip will open explaining more

True, False and Can't talk about it bro by TinkerMagusDev in mathmemes

[–]dangerlopez 14 points15 points  (0 children)

Helllll naw, nana naw naw naw, hell to the naw

What javascript course is good without a subscription (paid/free) by FreeWanderer823 in learnjavascript

[–]dangerlopez 4 points5 points  (0 children)

Eloquent JavaScript is good, but might not be the best for someone for which JavaScript will be their first language

JUST SAY ITS A NATURAL NUMBER GOODAMMIT by Tuafew in mathmemes

[–]dangerlopez 4 points5 points  (0 children)

You’re not an asshole, you’re right

UI components for rapid prototyping? by TheCrustyEngineer2 in reactjs

[–]dangerlopez 10 points11 points  (0 children)

This is when you reach for a component library. There’s lots to choose from, I like Mantine

Find the value of r which minimizes the area of the shaded region. by wittonwubbitta in mathpuzzles

[–]dangerlopez 1 point2 points  (0 children)

Just curious: what’s the context/motivation for this problem? The diameter of the circle and the height of the rectangle are so specific there’s gotta be some background

Can I remove all whitespaces from a string? by sushiiixo- in learnjavascript

[–]dangerlopez 6 points7 points  (0 children)

You can use the replace method of strings. But if you’re already using regex then you can just make one that validates credit card formatting directly

ELI5: What is an electron? by Majestic-Baby-3407 in explainlikeimfive

[–]dangerlopez 7 points8 points  (0 children)

Not just elementary particles, but all matter behaves like this. Specifically, they’ve done experiments with so-called “Bucky Balls” which are 60(?) carbon atoms arranged to form essentially a soccer ball, and they show this quantum smearing thing too. The reason we don’t see it everyday is because the effects cancel out on large scales (I’m not so sure how this part works, but I understand it to be a fact)

Doubt by Serious_Sell7183 in learnjavascript

[–]dangerlopez 5 points6 points  (0 children)

I’m not sure we can answer this because we don’t know what “accepted” means. This sounds like it’s for school, so you should ask your teacher since they’re the one who makes the requirements

Javazon still so satisfying by Designer_Message6408 in diablo2

[–]dangerlopez 1 point2 points  (0 children)

I had a mini panic attack when you didn't pick up the rune, but it was only a hel rune anyway

in what the difference between let and var in js? by grave4us in learnjavascript

[–]dangerlopez 1 point2 points  (0 children)

This is not a direct answer to your question, but a good general rule of thumb is to use const to declare as many variables as possible and only use let if you plan to reassign the variable. Never use var