example-functions.js 94 B

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