+ 2
What's an easy way to remember all of the codes for programming?
I'm new to programming, and I'm wondering if there's an easy way to memorize everything.
6 Answers
+ 3
Yep, @Rrestoring_faith is right. There is no way to memorize everything. What you will get at the end is that you will memorize what you use frequently, and what you don't, you google it and end up inside the official documentation, a blog post or a question inside Stack Overflow :)
For example, in javascript, let's say you don't use to add elements to an array and one day you need to do it. You have the notion that it should be something like array.add(). You google "javascript array add". You get to the documentation and see that it's actually array.push().
Just focus on undertanding the concepts, how things work and why they work and you should success :)
+ 7
You can't memorize 'everything', that'd be pointless.
Focus on understanding how things work, then memorizing will come naturally with practice.
+ 4
practice
practice
and more practice
no other way to memorize
+ 3
Just google everything you can't remember. You only need to remember the basics, like how you define a function/variable, but even that can be googled
+ 2
Just code real things. Remembering is out of date recently)
+ 1
learn the algorithms / way
of doing things
good programmers use the
documentation
languages are just tools
to do what we want