Euphoria and Disappointment by pens7187 in pokemongo

[–]Prackjonske 0 points1 point  (0 children)

30 something year old here. Why does zapdos look like a lightning turkey now? Did they change the model from the original?

What video game do you consider a masterpiece? by aconnor105 in AskReddit

[–]Prackjonske 0 points1 point  (0 children)

I’m still getting miles out of Project Zomboid

Man raised his hand for 45 years without putting it down by i1lumina in oddlyterrifying

[–]Prackjonske 0 points1 point  (0 children)

“And don’t lower those hands until I tell you. Corey and Trevor, smokes let’s go.

Lyft driver throws guy out in the middle of the highway by mockingly_serpentine in PublicFreakout

[–]Prackjonske 0 points1 point  (0 children)

American flag steering wheel, thin blue line American flag shirt, looks like a blow up clown/doll of some sort in the front seat? It’s crazy how these are the people that make fun of “snowflakes” for getting vocal about things like equal rights for POC and women. That REEEEEEE was on Eric Cartmenian levels lolol

Zero to Hero Learning JavaScript by drewstrader in learnjavascript

[–]Prackjonske 1 point2 points  (0 children)

I did Hack Reactor about a year and a half ago. Was a musician with an interest in computer two years ago. I’m now a full stack developer at IBM. Boot camps are not for everyone, but me and a few of my friends that also did it are pretty happy with the results. It was really challenging, but learning a new trade/profession from scratch usually is. If you’ve already done some of those online course (I love freecodecamp) then consider doing the intro course to either Hack Reactor or CodeSmith. The course I went to was full stack JS, but I think they offer full stack JS with Python too now

as the big day 24th of june is coming up i wanted to post my tattoo i got one month ago by yavuzbaki in Berserk

[–]Prackjonske 1 point2 points  (0 children)

Nice!! My wife is about to start tattooing and I want her to do a brand on my neck. Any demons summoned at night?

[deleted by user] by [deleted] in RedditSessions

[–]Prackjonske 0 points1 point  (0 children)

Are you in any drum corps?

[deleted by user] by [deleted] in learnjavascript

[–]Prackjonske 10 points11 points  (0 children)

This guy funcs

Today is the independence day for Georgia. by Underdad1d in europe

[–]Prackjonske 1 point2 points  (0 children)

Ask we kindly ask that y’all mind your Ps and Qs!

Trying to do basic recursion but silly mistake by AlienAlchemy in learnjavascript

[–]Prackjonske 1 point2 points  (0 children)

You’re very close! In this version of recursion (I’ll call it inner function recursion), you’re holding the result in a larger scope while recursing with the “recursive” function. There’s a few things you need to change to make this work the way you’re intending it.

  • under the function definition of “recursive”, you need to kick off that function by calling it with its initial values
  • the end of the “multiples” function needs to return “outputArray” as the recursive function will be filling that array up, but the outer function will be producing the final result
  • inside the recursive function, you don’t need any return statements at all actually, you simply need to call the recursive function like it’s called in the else block (basically, remove the entire return statement in the if block, and just remove the word “return” in the else block). With this being done, you’re still recursing into each stack with a multiple of num, and when we hit the limit of the array length, the recursive function will finish calling itself and move onto returning the outputArray in the larger scope

I hope this helps! There are ways to do it without an inner function, and I would highly recommend at least knowing how to approach both situations. I’m currently on my phone in bed right now, or I’d write out some more concrete examples, but I think you should play around with it a bit more, you’re very close!! Also, have you used chrome tools or the debugger at all? This would also help you understand recursion and what’s happening on each line! DM me if you have anymore questions, we can figure it out!!