@choyongjoon
Nothing here yet.
Nothing here yet.
No blogs yet.
All of your examples can be good goals. But a purpose is more important than a goal. What do you expect after achieving the goal? For your career, just reading X books or learning technology X is not enough. You need to show your skills in a job interview. If you want to prepare a job interview or a resume, what you need to do will be more clear. For your current work, improving products looks like a good goal. But how about learning and sharing knowledge to your colleagues? You can create a internal project and open to the public. Lastly, if you are happy while you're exploring somewhere not related to both your current job and your future job, it could be a good goal for you. It may also help your career in a long term.
The operator ... cannot be used in anywhere. Rest Parameters Only available in function parameters to "represent an indefinite number of arguments as an array". function f ( a, b, ...theArgs ) { // ... } Spread Syntax 3 Cases are available 1) For function calls: myFunction (.. .iterableObj ); 2) For array literals or strings: [...iterableObj, '4' , 'five' , 6]; 3) For object literals (new in ECMAScript 2018): let objClone = { ...obj };
When I edit source codes, there are repetitive tasks. Some of them can be done with 'find and replace' (+ Regex) or IDE's feature. But others are hard to command to a computer. So I just want to do it few times and say "See? Do it yourself from now on".