>FromYourCode();

Source code quote in JavaScript84

  7 November, 2013 at 10:38
var a = 123;
var c = 456;

Appel(a, c);

function Appel(a, b) {
    if(typeof(c) == 'undefined')
    {
       c = b;
    }

    Suite(a, b);
}

Check similar quotes

Share this quote