Node.js examples for Number:Int
Divide two number and get the integer
function div ( a, b ) { return Math.floor( a / b ); }