File talk:Javascript icon.svg

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

No semicolon[edit]

Sorry for being pendantic, but the code is missing a semicolon at the end of the function declaration.

String.protoype.trim =
  function ()
  {
    return this
        .replace (/^\s+/,"")
        .replace (/\s+$/,"");
  } // missing semicolon

OnesimusUnbound (talk) 07:37, 29 October 2012 (UTC)[reply]