example-functions-2.js 92 B

12345
  1. if(! window.EXAMPLES) window.EXAMPLES = {};
  2. EXAMPLES.divide = function(x,y){
  3. return x/y;
  4. }