Skip to content

Instantly share code, notes, and snippets.

View Pholisa-Fatyela's full-sized avatar

Pholisa Fatyela Pholisa-Fatyela

  • Cape Town, South Africa
View GitHub Profile
exports.multiply = function (number, cb){
setTimeout(function(){
var result = number * 7;
//console.log( number * 7)
if (number == 6){
return cb("6 is not allowed", null)
}
cb(null, result);
},1000);
}