How to become a good quality person
- Daily learn one new thing
- Daily shoud instruct one new thing
- Help to people if you can
- Make friendship with others
#100DaysOfCode#CodeNewbie
How to become a good developer
- Daily read good articles 15-30 minutes
- Follow good developers in twitter and devto
- Should practice for small logic programs
#javascript#100DaysOfCode#CodeNewbie
javascript basics for...in vs for...of
- for...in return index & using index we can access values
- for...of return values
- for...in ignores undefined elements
- for...of returns undefined values
Do you THINK in React?
Here are the 5 Steps:
1: Break The UI Into Components
2: Build A Static Version
3: Identify The Minimal Representation of UI State
4: Identify Where State Should Live
5: Add Inverse Data Flow
#ReactJS#100DaysOfCode#codenewbie
Welcome to #Hacktoberfest 2020! Get involved with open source this October and earn yourself some swag. 👕 Brought to you by @digitalocean, @intel and @ThePracticalDev, our site has more details and great resources: https://t.co/EABbXwl8QX 🔗 💙
When we work as developers, we're not paid to code. We're not paid to use different languages and frameworks.
We're paid to solve problems - for businesses and users.
Code just happens to be an efficient tool to reach that goal. But don't lose sight of the real objective.
javascript tiny tips
let vs var
- Variables declared by var keyword are scoped to the immediate function body (hence the function scope)
- While let variables are scoped to the immediate enclosing block denoted by { } (hence the block scope)