Skip to content

Instantly share code, notes, and snippets.

View YuriyKartuzov's full-sized avatar

Yuriy Kartuzov YuriyKartuzov

View GitHub Profile
/* FROM FILE - S15.4.4.8_A1_T1.js -------------------------------- */
// CHECK#1
var x = [];
var reverse = x.reverse();
if (reverse !== x) {
$ERROR('#1: x = []; x.reverse() === x. Actual: ' + (reverse));
}
// MY VERSION
var x = [];