17 Pro JavaScript tricks you didn???t know

JavaScript : Tricks You Should Know

The ternary operator

let hungry = true;
let eat;
if (hungry === true) {
eat = 'yes';
} else {
eat = 'no';
}

 

Read More

Tags: Java