Posts Tagged with tips
3 Tips to have Long and Successful Creative Career
Start Before You’re Ready If you are waiting to be ready to start, you will never start! Just start chasing your dreams and goals. You will learn more during your work. The process of success is iterative. Your first work will suck, but the next work will be more polished.
After too many iterations of work, your work will be amazing. Repetition makes perfect. You’ll gain experience through that journey of success.
All Javascript Optimization Tips & Techniques
Parsing Objects in Javascript if you are using object like this.
const data = {foo: 42, bar: 1337, ... }; use the JSON.parse() instead
const data = JSON.parse('{"foo":42,"bar":1337, ... }'); It seems slower, but in the real world IT IS WAY WAY FASTER.
Why is it faster? because JSON.parse() has one token (Javascript object literal), but the string literal has too many tokens. want to know more ? watch this video from Google chrome developers YouTube channel.