Awesome JavaScript Smart Techniques.
1.Ternary Operator
This is a great code saver when you want to write an if..else statement in just one line.
Longhand:
const x = 100;
let answer;
if (x > 100) {
answer = 'greater than 100';
}...
3
NodeJs and C# developer haviing 3 years experience in web and desktop applications.