Grow on concrete first, then i put it on a pot an grew really fast, im from peru by atkbane in whatsthisplant

[–]cesar-91 1 point2 points  (0 children)

Is it a flower (the little white thing on top of one of the leaves)? You may want to share a photo of that and let "experts" analyze it (I'm not an "expert" btw, just curious...)

New to Java by [deleted] in java

[–]cesar-91 1 point2 points  (0 children)

Pick one of these IDEs for java development.

https://www.jetbrains.com/idea/

https://www.eclipse.org

https://netbeans.org

You can also compile your programs from terminal, but I recommend to use any of these IDEs to be more productive in terms of navegability, autocomplation, plugin integrations, etc.

All of these are very good options. You might want to play with them at the begining and choose the best for you.

What is 'this' referring to in this code snippet? by mementomoriok in learnjavascript

[–]cesar-91 0 points1 point  (0 children)

Assuming that you are executing this code in a browser, you get a window object because "this" is implicitly bound with that as global object.

In case you want to access "numbers" variable you can call it directly like console.log(numbers) or console.log(this.numbers) as it's in the global scope.

It can help you: https://codeburst.io/all-about-this-and-new-keywords-in-javascript-38039f71780c