Best of LoggingAugust 2021

  1. 1
    Article
    Avatar of devtoDEV·5y

    Essential Concepts in JS

    Javascript is a language that can do almost anything you want it to do today with much ease. It is different from C/C++ in that it is interpreted line-by-line, rather than a program being read at once. It can only perform one single task at a time. It queues different tasks into different queues based on type.

  2. 2
    Article
    Avatar of devtoDEV·5y

    7 interesting deprecated JavaScript features

    JavaScript has come a long way since its birth 26 years ago at Netscape. Some of these can still be used but it’s highly discouraged. There is no place for optimization inside it, since you can’t predict if variable will refer to a property or an outside variable. It violates lexical scope, making program analysis very hard or even infeasible.

  3. 3
    Article
    Avatar of hashnodeHashnode·5y

    🔥 Top 7 JavaScript Array sort() Method Use Cases

    The sort() method sorts the elements of an array and returns the sorted array, and no copy is made. The default sort order is ascending. In this article, we will see how we can utilise its power to the fullest. We can sort a simple array of strings using a functionless array sort()method like this.

  4. 4
    Article
    Avatar of devtoDEV·5y

    5 Git Tricks Every Developer Should Know

    In this article we will discuss 5 git tips and tricks that will enhance your productivity, better your workflow and make you an overall git ninja. Let’s dive in: Remove all your local git branches but keep master. A better git log visualization on terminal. How to delete a git branch locally and from remote.

  5. 5
    Article
    Avatar of hashnodeHashnode·5y

    🔥 JavaScript Array sort() Method Use Cases

  6. 6
    Article
    Avatar of itnextITNEXT·5y

    Implement Logging and Reporting Best Practices.

    Logging best practices can enhance your ability to troubleshoot and resolve problems before they impact your users or organization. Logging depends on the use of at least one Java logging framework. Include metadata in your logs so you’re able to pinpoint production problems. Do not write overly large logs or incorporate unnecessary information.