JavaScript: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

13 June 2008

  • curprev 11:4011:40, 13 June 2008Sixsigma talk contribs 168 bytes +168 New page: = Clone an array with slice = var a = [ 1, 2, 3 ]; var b = a.slice( 0 ); WScript.StdOut.WriteLine( b ); // 1, 2, 3 WScript.StdOut.WriteLine( a == b ); // False