Part 1
JavaScript Operators use either value or variable to compute some task. This lesson describes the JavaScript operators with example, and operators precedence.
JavaScript arithmetic operator take operand (as a values or variable) and return the single value.
+
OperatorWith this operator, we can add two or more values. For example:
And our output is:
As you know, in JavaScript, a value is not only a number but also a value in string expressions. What will be the result if we want to collect them?
And our output is:
4 Ways You Can Get Rid of Dirty Side Effects for Cleaner Code in JavaScript. Bugs are born in many ways. Creating side effects is one of them. Some people say side effects are evil, some say they’re not.
Static code analysis is a method of debugging by examining source code before a program is run. It's done by analyzing a set of code against a set (or multiple sets) of coding rules. Static code analysis and static analysis are often used interchangeably, along with source code analysis.
Who Else Wants to Write Clean JavaScript Code? 7 Tips to Make Your Coworkers Fall in Love With Your Code.
Don’t waste time writing long code while you can make it short, yet clearer and easier to read. In this Javascript tutorial, we'll discuss 15 Simple Coding Techniques to Get Your Tasks Done with Shorter Code in JavaScript
How often do you think about the environment that your code runs in, and the resources that are available to it when it runs? Understanding the ‘runtime’ environment can help us make better choices as JavaScript developers when writing code.