Posts

Showing posts from September, 2024

Way to Code Fast !!

  1. Start to learn new things. Thanks to the internet, we have a roadmap of everything. But before getting flowed away with a particular way, Know what’s happening  new  in the market, the concepts behind new technologies, Build up your  Curiosity  else it may be a possibility that you may not like the field you are currently in after working for a considerable time. For example: to be the most responsible guy in a startup you should know how other things works as well 2. Debug Faster When you are writing a basic HTML, JavaScript, CSS webpage, most probably it’ll have a bug in there, the best way you may use to resolve the bug is by  adding logs  to your code and looking out which part of the code broke. This way is very slower and also makes you very complacent for learning new things, There are various other fast and powerful methods and tools to do the same, such as  Break-point-debugging ,  Chrome inspector  and many other methods. ...