JavaScript
Jump to navigation
Jump to search
Subjects
Examples
Organizatorium
- The simplest example: https://www.w3schools.com/js/js_whereto.asp
Things I've Found Useful While Working with Chrome Console
var a = 10;
console.log(a);
var workersUp = function(targetCnt) {
return Cluster.workers().length == targetCnt;
};